Share

TableHitItem

C++

enum TableHitItem {
  kTableHitNone = 0,
  kTableHitCell = 0x1,
  kTableHitRowIndicator = 0x2,
  kTableHitColumnIndicator = 0x4,
  kTableHitGridLine = 0x8
};

File

acdb.h

Members

Members Description
kTableHitNone Indicates there is no item at the specified point.
kTableHitCell Indicates the item is a cell.
kTableHitRowIndicator Indicates that the item is at the row.
kTableHitColumnIndicator Indicates that the item is at the column.
kTableHitGridLine Indicates the item is at a grid line.

Description

TableHitItem

Was this information helpful?