Description
This .NET class wraps the CellContentLayout ObjectARX enum.
These values define the content cell layout options.
Visual Basic
Public Enum CellContentLayout Flow = 1 StackedHorizontal = 2 StackedVertical = 4 End Enum
C#
public enum CellContentLayout { Flow = 1, StackedHorizontal = 2, StackedVertical = 4 }
Members
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 |