This .NET class wraps the CellEdgeMasks ObjectARX enum.
These values specify the cell edge of a table cell.
Public Enum CellEdgeMasks BottomMask = 4 LeftMask = 8 RightMask = 2 TopMask = 1 End Enum
public enum CellEdgeMasks {
BottomMask = 4,
LeftMask = 8,
RightMask = 2,
TopMask = 1
}
| Members | Description |
|---|---|
| BottomMask = 4 | Indicates the bottom-edge index of the cell. |
| LeftMask = 8 | Indicates the left-edge index of the cell. |
| RightMask = 2 | Indicates the right-edge index of the cell. |
| TopMask = 1 | Indicates the top-edge index of the cell. |