Description
This class enumerates the valid Lisp data types.
Visual Basic
Public Enum LispDataType Angle = &H138c DottedPair = &H139a Double = &H1389 Int16 = &H138b Int32 = &H1392 ListBegin = &H1398 ListEnd = &H1399 Nil = &H139b None = &H1388 ObjectId = &H138e Orientation = &H1390 Point2d = &H138a Point3d = &H1391 SelectionSet = &H138f T_atom = &H139d Text = &H138d Void = &H1396 End Enum
C#
public enum LispDataType { Angle = 0x138c, DottedPair = 0x139a, Double = 0x1389, Int16 = 0x138b, Int32 = 0x1392, ListBegin = 0x1398, ListEnd = 0x1399, Nil = 0x139b, None = 0x1388, ObjectId = 0x138e, Orientation = 0x1390, Point2d = 0x138a, Point3d = 0x1391, SelectionSet = 0x138f, T_atom = 0x139d, Text = 0x138d, Void = 0x1396 }
Members
Members | Description |
---|---|
Angle = 0x138c | Angle data type. |
DottedPair = 0x139a | DottedPair data type. |
Double = 0x1389 | Double data type. |
Int16 = 0x138b | 16-bit signed integer data type. |
Int32 = 0x1392 | 32-bit signed integer data type. |
ListBegin = 0x1398 | ListBegin data type. |
ListEnd = 0x1399 | ListEnd data type. |
Nil = 0x139b | Nil data type. |
None = 0x1388 | No data type. |
ObjectId = 0x138e | ObjectId data type. |
Orientation = 0x1390 | Orientation data type. |
Point2d = 0x138a | Point2d data type. |
Point3d = 0x1391 | Point3d data type. |
SelectionSet = 0x138f | SelectionSet data type. |
T_atom = 0x139d | T_atom data type. |
Text = 0x138d | Text data type. |
Void = 0x1396 | Void data type. |