This .NET class wraps the AcDbDataCell::CellType ObjectARX enum.
These values specify the data types that can be represented by an DataCell object.
Public Enum CellType Unknown Integer Double CharPtr Point ObjectId HardOwnerId SoftOwnerId HardPtrId SoftPtrId Bool Vector End Enum
public enum CellType { Unknown, Integer, Double, CharPtr, Point, ObjectId, HardOwnerId, SoftOwnerId, HardPtrId, SoftPtrId, Bool, Vector }
Members |
Description |
Unknown |
Unspecified, default cell type |
Integer |
Signed 32-bit integer |
Double |
double |
CharPtr |
char * |
Point |
Point3d |
ObjectId |
ObjectId |
HardOwnerId |
HardOwnershipId |
SoftOwnerId |
SoftOwnershipId |
HardPtrId |
HardPointerId |
SoftPtrId |
SoftPointerId |
Bool |
Boolean |
Vector |
Vector3d |
Comments? |