This .NET class wraps the CellMargins ObjectARX enum.
These values specify the margin types.
Public Enum CellMargins Bottom = 4 Left = 2 Right = 8 Top = 1 End Enum
public enum CellMargins { Bottom = 4, Left = 2, Right = 8, Top = 1 }
Members |
Description |
Bottom = 4 |
Bottom margin |
Left = 2 |
Left margin |
Right = 8 |
Right margin |
Top = 1 |
Top margin |
Comments? |