Share

Autodesk.AutoCAD.DatabaseServices.CellContentLayout Enumeration

Description

This .NET class wraps the CellContentLayout ObjectARX enum.

These values define the content cell layout options.

C#

public enum CellContentLayout {
  Flow = 1,
  StackedHorizontal = 2,
  StackedVertical = 4
}

Visual Basic

Public Enum CellContentLayout
  Flow = 1
  StackedHorizontal = 2
  StackedVertical = 4
End Enum

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

Was this information helpful?