Share

CellProperty

C++

enum CellProperty {
  kCellPropInvalid = 0,
  kCellPropDataType = 0x1,
  kCellPropDataFormat = 0x2,
  kCellPropRotation = 0x4,
  kCellPropScale = 0x8,
  kCellPropAlignment = 0x10,
  kCellPropContentColor = 0x20,
  kCellPropTextStyle = 0x40,
  kCellPropTextHeight = 0x80,
  kCellPropAutoScale = 0x100,
  kCellPropBackgroundColor = 0x200,
  kCellPropMarginLeft = 0x400,
  kCellPropMarginTop = 0x800,
  kCellPropMarginRight = 0x1000,
  kCellPropMarginBottom = 0x2000,
  kCellPropMarginHorzSpacing = 0x20000,
  kCellPropMarginVertSpacing = 0x40000,
  kCellPropContentLayout = 0x4000,
  kCellPropMergeAll = 0x8000,
  kCellPropFlowDirBtoT = 0x10000,
  kCellPropDataTypeAndFormat = (kCellPropDataType | kCellPropDataFormat),
  kCellPropContent = (kCellPropDataType | kCellPropDataFormat | kCellPropRotation | kCellPropScale | kCellPropContentColor | kCellPropTextStyle | kCellPropTextHeight | kCellPropAutoScale),
  kCellPropBitProperties = (kCellPropAutoScale | kCellPropMergeAll | kCellPropFlowDirBtoT),
  kCellPropAll = (kCellPropDataType | kCellPropDataFormat | kCellPropRotation | kCellPropScale | kCellPropAlignment | kCellPropContentColor | kCellPropBackgroundColor | kCellPropTextStyle | kCellPropTextHeight | kCellPropMarginLeft | kCellPropMarginTop | kCellPropMarginRight | kCellPropMarginBottom | kCellPropMarginHorzSpacing | kCellPropMarginVertSpacing | kCellPropAutoScale | kCellPropMergeAll | kCellPropFlowDirBtoT | kCellPropContentLayout)
};

File

acdb.h

Members

Members Description
kCellPropInvalid Invalid property
kCellPropDataType Data type
kCellPropDataFormat Data format
kCellPropRotation Rotation
kCellPropScale Scale
kCellPropAlignment Alignment
kCellPropContentColor Color
kCellPropTextStyle Text style
kCellPropTextHeight Text height
kCellPropAutoScale Auto scale
kCellPropBackgroundColor Cell background color
kCellPropMarginLeft Left margin
kCellPropMarginTop Top margin
kCellPropMarginRight Right margin
kCellPropMarginBottom Bottom margin
kCellPropMarginHorzSpacing Horizontal spacing margin
kCellPropMarginVertSpacing Vertical spacing margin
kCellPropContentLayout Content layout
kCellPropMergeAll Merge all cells flag
kCellPropFlowDirBtoT Table flow direction
kCellPropDataTypeAndFormat A combonation of kCellPropDataType and kCellPropDataFormat.
kCellPropContent A combonation of content types: kCellPropDataType , kCellPropDataFormat , kCellPropRotation, kCellPropScale, kCellPropAlignment, kCellPropContentColor kCellPropTextStyle | kCellPropTextHeight | kCellPropAutoScale
kCellPropBitProperties A combonation of bit properties: kCellPropAutoScale, kCellPropMergeAll, kCellPropFlowDirBtoT
kCellPropAll A combonation of all the cell properties

Description

Cell properties

Was this information helpful?