Autodesk.AutoCAD.DatabaseServices Namespace > SectionType Enumeration
Autodesk.AutoCAD.DatabaseServices.SectionType Enumeration
Description

 

This .NET enum wraps the AcDbSectionSettings::SectionType ObjectARX enum. 

 

It gives options for section generation. This enum is used to get and set properties for generated section geometry.

Visual Basic
Public Enum SectionType
  LiveSection = 1
  Section2d = 2
  Section3d = 4
End Enum
C#
public enum SectionType {
  LiveSection = 1,
  Section2d = 2,
  Section3d = 4
}
Members
Members 
Description 
LiveSection = 1 
Live sectioning. 
Section2d = 2 
2d section. 
Section3d = 4 
3d section. 
   Comments?