VBScript
entity.GetAllFieldValues
Perl
$entity->GetAllFieldValues();
VBScript
' Iterate through the fields and examine the field names and values fieldObjs = GetAllFieldValues For Each field In fieldObjs fieldValue = field.GetValue fieldName = field.GetName ' ... Next
Perl
# Get the list of field values $fieldvalues = $entity->GetAllFieldValues(); $numfields = $fieldvalues->Count(); for ($x = 0; $x < $numfields ; $x++) { $field = $fieldvalues->Item($x); $fieldvalue = $field->GetValue(); $fieldname = $field->GetName(); # ... other field commands }