This .NET class wraps the CellContentLayout ObjectARX enum.
These values define the content cell layout options.
Public Enum CellContentLayout Flow = 1 StackedHorizontal = 2 StackedVertical = 4 End Enum
public enum CellContentLayout { Flow = 1, StackedHorizontal = 2, StackedVertical = 4 }
Members |
Description |
Flow = 1 |
Contents flow from left to right and top to bottom. |
StackedHorizontal = 2 |
Contents are stacked side by side |
StackedVertical = 4 |
Contents are stacked one above other |
Comments? |