This .NET class wraps the AcDb::TableBreakFlowDirection ObjectARX class. It gives the table breaking flow direction options.
Public Enum TableBreakFlowDirection DownOrUp = 2 Left = 4 Right = 1 End Enum
public enum TableBreakFlowDirection {
DownOrUp = 2,
Left = 4,
Right = 1
}
| Members | Description |
|---|---|
| DownOrUp = 2 | Break tables in top to bottom (for top to bottom flow table) or bottom to top (for bottom to top flow table) directions. |
| Left = 4 | Break tables in right to left direction. |
| Right = 1 | Break tables in left to right direction. |