모든 Entity 오브젝트 필드에 해당하는 FieldInfo 오브젝트의 배열을 리턴합니다. FieldInfo 오브젝트는 특정 순서로 배열되지 않습니다.
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
}