This .NET class wraps the AcDbSection::State ObjectARX class. It gives the type of section plane.
Public Enum SectionState Boundary = 2 Plane = 1 Volume = 4 End Enum
public enum SectionState { Boundary = 2, Plane = 1, Volume = 4 }
Members |
Description |
Boundary = 2 |
Section plane is bounded by the section line, two side lines, and a back line. However it extends infinitely up and down. |
Plane = 1 |
Section plane extends infinitely in all directions. |
Volume = 4 |
Section plane is bounded by the front, side, back, top, and bottom lines. |
Comments? |