Share

TableStyleFlags

C++

enum TableStyleFlags {
  kHorzInsideLineFirst = 0x1,
  kHorzInsideLineSecond = 0x2,
  kHorzInsideLineThird = 0x4,
  kTableStyleModified = 0x8,
  kTableStyleDataTypeModified = 0x10
};

File

acdb.h

Members

Members Description
kHorzInsideLineFirst Indicates the horizontal bottom grid line of the title row is on top of the draw order
kHorzInsideLineSecond Indicates the horizontal bottom grid line of the header row is on top of the draw order
kHorzInsideLineThird Indicates the horizontal bottom grid line of the subheader row is on top of the draw order
kTableStyleModified Indicates the table style was modified (internal use flag).
kTableStyleDataTypeModified Indicates the data type of the table style was modified (internal use flag)

Description

For internal use only.

Was this information helpful?