Share

AcFd

C++

struct AcFd {
  enum EvalFields {
    kEvalRecursive = (0x1 << 0)
  };
  enum ConvertFieldToText {
    kConvertFieldToTextNone = 0,
    kEvaluateBeforeConversion = (0x1 << 0),
    kExcludeEvaluatorsInList = (0x1 << 1),
    kIgnoreEvaluatorVersion = (0x1 << 2)
  };
};

File

DbField.h

Members

Members Description
kEvalRecursive Recursively evaluate complex objects
kConvertFieldToTextNone No option.
kEvaluateBeforeConversion Evaluate the fields before converting them to text.
kExcludeEvaluatorsInList Treat the list of evaluator IDs in pEvalIds in acdbConvertFieldsToText() as exclusion list. i.e. skip the fields with evaluator IDs found in this list and convert the rest.
kIgnoreEvaluatorVersion Ignore the evaluator version while comparing the evaluator IDs in pEvalIds array in acdbConvertFieldsToText() method.

Description

Namespace for enumerations.

Was this information helpful?