C++
enum CellEdgeMask { kTopMask = 1, kRightMask = 2, kBottomMask = 4, kLeftMask = 8 };
File
acdb.h
Members
| Members | Description |
|---|---|
| kTopMask | Indicates the top-edge index of the cell. |
| kRightMask | Indicates the right-edge index of the cell. |
| kBottomMask | Indicates the bottom-edge index of the cell. |
| kLeftMask | Indicates the left-edge index of the cell. |
Description
These values specify the cell edge of a table cell.