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

 

This .NET class wraps the AcDb::GridProperty ObjectARX enum. These values describe the grid lines of a table.

Visual Basic
Public Enum GridProperties
  Color = 8
  DoubleLineSpacing = &H20
  Invalid = 0
  LineStyle = 1
  Linetype = 4
  LineWeight = 2
  Visibility = &H10
End Enum
C#
public enum GridProperties {
  Color = 8,
  DoubleLineSpacing = 0x20,
  Invalid = 0,
  LineStyle = 1,
  Linetype = 4,
  LineWeight = 2,
  Visibility = 0x10
}
Members
Members 
Description 
Color = 8 
Grid line color 
DoubleLineSpacing = 0x20 
Grid double line spacing 
Invalid = 0 
Unknown grid property 
LineStyle = 1 
Grid line style 
Linetype = 4 
Grid line type 
LineWeight = 2 
Grid line weight 
Visibility = 0x10 
Grid line visibility 
   Comments?