Share

ExpressionFieldOption

C++

enum ExpressionFieldOption {
  kExprFieldNone = 0,
  kExprFieldSum = (0x1 << 0),
  kExprFieldAverage = (0x1 << 1),
  kExprFieldCount = (0x1 << 2),
  kExprFieldCell = (0x1 << 3),
  kExprFieldEquation = (0x1 << 4)
};

File

AcFdUtil.h

Members

Members Description
kExprFieldNone No option.
kExprFieldSum Set this flag to get field code for sum function.
kExprFieldAverage Set this flag to get field code for average fucntion.
kExprFieldCount Set this flag to get field code for count function.
kExprFieldCell Set this flag to get field code for a table cell.
kExprFieldEquation Not used currently.

Description

Option bit flags for coining a field code for an expression field.

Was this information helpful?