Share

AcDbDataCell Constructor

Overload List

Method Description
AcDbDataCell::AcDbDataCell () Default constructor.Initializes the type of the cell as AcDbDataCell::kUnknownType.
AcDbDataCell::AcDbDataCell (AcDbDataCell&) Copy constructor.Creates a new AcDbDataCell object and initializes it with the type and value of rCell.
AcDbDataCell::AcDbDataCell (AcDbHardOwnershipId&) Creates an AcDbDataCell object with a type of kHardOwnerId and an AcDbObjectId value specified by the parameter hoId.
AcDbDataCell::AcDbDataCell (AcDbHardPointerId&) Creates an AcDbDataCell object with a type of kHardPointerId and an AcDbObjectId value specified by the parameter hpId.
AcDbDataCell::AcDbDataCell (AcDbObjectId&) Creates an AcDbDataCell object with a type of kObjectId and an AcDbObjectId value specified by the parameter id.The ID is treated in the same manner as an AcDbSoftPointerId.
AcDbDataCell::AcDbDataCell (AcDbSoftOwnershipId&) Creates an AcDbDataCell object with a type of kSoftOwnerId and an AcDbObjectId value specified by the parameter soId.
AcDbDataCell::AcDbDataCell (AcDbSoftPointerId&) Creates an AcDbDataCell object with a type of kSoftPointerId and an AcDbObjectId value specified by the parameter spId.
AcDbDataCell::AcDbDataCell (AcGePoint3d&) Creates an AcDbDataCell object with a type of kPoint and an AcGePoint3d value specified by the parameter point.
AcDbDataCell::AcDbDataCell (AcGeVector3d&) Creates an AcDbDataCell object with a type of kVector and an AcGeVector3d value specified by the parameter vec.
AcDbDataCell::AcDbDataCell (ACHAR *) Creates an AcDbDataCell object with a type of kCharPtr and a null-terminated string value specified by the parameter pChar.
AcDbDataCell::AcDbDataCell (bool) Creates an AcDbDataCell object with a type of kBool and a Boolean value specified by the parameter b.
AcDbDataCell::AcDbDataCell (double) Creates an AcDbDataCell object with a type of kDouble and a double value specified by the parameter d.
AcDbDataCell::AcDbDataCell (int) Creates an AcDbDataCell object with a type of kInteger and an integer value specified by the parameter i.

Was this information helpful?