Autodesk.AutoCAD.GraphicsInterface Namespace > VariantType Enumeration
Autodesk.AutoCAD.GraphicsInterface.VariantType Enumeration
Description

 

This .NET class wraps the AcGiVariant::VariantType ObjectARX class. It describes the current type assigned to the Variant class.

Visual Basic
Public Enum VariantType
  Undefined
  Boolean
  Int
  Double
  Color
  String
  Table
End Enum
C#
public enum VariantType {
  Undefined,
  Boolean,
  Int,
  Double,
  Color,
  String,
  Table
}
Members
Members 
Description 
Undefined 
Variant type is not set. This is the default type for new Variant
Boolean 
Variant represents a boolean type (bool). 
Int 
Variant represents an integer type (long). 
Double 
Variant represents an floating point type (double). 
Color 
Variant represents a color type (Color). 
String 
Variant represents an string type (AcString). 
Table 
Variant represents an list of name/value pairs. 
   Comments?