AutoCAD.Xrecord
Inherits from AutoCAD.Object
Description
A class that encapsulates an Xrecord in a DWG file.
This class wraps a subset of the RealDWG AcDbXrecord class functionality. Usually, Xrecord objects are stored by an application in the object's AutoCAD.Object.extensionDictionary.
Methods
appendRbChain | Add data to the Xrecord without reading the existing data. |
rbChain | Read the data associated with the Xrecord |
setFromRbChain | Replace the data associated with the Xrecord. |
Static Methods
create | Creates a new Xrecord object. |
Details
Do no remove, this fixes the anchor on doc.flexsim.com
AutoCAD.Xrecord.appendRbChain()
appendRbChain( AutoCAD.TypedValueArray values ) |
Parameters
values | The values to append. |
Description
Add data to the Xrecord without reading the existing data.
Do no remove, this fixes the anchor on doc.flexsim.com
AutoCAD.Xrecord.rbChain()
AutoCAD.TypedValueArray rbChain( ) |
Returns
AutoCAD.TypedValueArray | The values associated with the Xrecord. |
Description
Read the data associated with the Xrecord
Do no remove, this fixes the anchor on doc.flexsim.com
AutoCAD.Xrecord.setFromRbChain()
setFromRbChain( AutoCAD.TypedValueArray values ) |
Parameters
values | The new values to associate with |
Description
Replace the data associated with the Xrecord.
If the input array is empty, this function does nothing. To delete the data, replace it with an array containing a single value.Do no remove, this fixes the anchor on doc.flexsim.com
AutoCAD.Xrecord.create()
static AutoCAD.Xrecord create( ) |
Returns
AutoCAD.Xrecord | The newly created Xrecord object. |
Description
Creates a new Xrecord object.