Share

ObjectFieldOption

C++

enum ObjectFieldOption {
  kObjFieldNone = 0,
  kObjFieldUnresolvedBlockRef = (0x1 << 0),
  kObjFieldApplyBlockTransform = (0x1 << 1),
  kObjFieldUnresolvedObjectRef = (0x1 << 2)
};

File

AcFdUtil.h

Members

Members Description
kObjFieldNone No option.
kObjFieldUnresolvedBlockRef Set this flag to get the field code for unresolved block reference.
kObjFieldApplyBlockTransform Set this flag if block transform should be applied on the object before getting the property value while evaluating the field. This option is applicable only if the object resides in a block and the field is in an attribute.
kObjFieldUnresolvedObjectRef Set this flag to get the field code for unresolved block reference.

Description

Option bit flags for coining an object property field.

Was this information helpful?