Defines the extended data code.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax Public Enumeration XDataCode
public enum class XDataCode
Members
| Member name | Value | Description |
---|
| String | 1000 |
Strings in extended data can be up to 255 bytes long.
|
| AppReg | 1001 |
Application names can be up to 31 bytes long.
|
| ControlString | 1002 |
An extended data control string can be either “{” or “}”.
These braces enable applications to organize their data by subdividing the data into lists.
The left brace begins a list, and the right brace terminates the most recent list. Lists can be nested.
|
| LayerName | 1003 |
Name of the layer associated with the extended data
|
| BinaryData | 1004 |
Binary data is organized into variable-length chunks.
The maximum length of each chunk is 127 bytes.
The binary data is represented as a string of hexadecimal digits, two per binary byte.
|
| DatabaseHandle | 1005 |
Handles of entities in the drawing database.
|
| RealX | 1010 |
Three real values, in the order X, Y, Z.
They can be used as a point or vector record. AutoCAD never alters their value.
|
| RealY | 1020 |
Three real values, in the order X, Y, Z.
They can be used as a point or vector record. AutoCAD never alters their value.
|
| RealZ | 1030 |
Three real values, in the order X, Y, Z.
They can be used as a point or vector record. AutoCAD never alters their value.
|
| WorldSpacePositionX | 1011 |
Unlike a simple 3D point, the world space coordinates are moved, scaled, rotated, and mirrored
along with the parent entity to which the extended data belongs.
The world space position is also stretched when the STRETCH command is applied to the parent entity and
this point lies within the select window
|
| WorldSpacePositionY | 1021 |
Unlike a simple 3D point, the world space coordinates are moved, scaled, rotated, and mirrored
along with the parent entity to which the extended data belongs.
The world space position is also stretched when the STRETCH command is applied to the parent entity and
this point lies within the select window
|
| WorldSpacePositionZ | 1031 |
Unlike a simple 3D point, the world space coordinates are moved, scaled, rotated, and mirrored
along with the parent entity to which the extended data belongs.
The world space position is also stretched when the STRETCH command is applied to the parent entity and
this point lies within the select window
|
| WorldSpaceDisplacementX | 1012 |
Also a 3D point that is scaled, rotated, and mirrored along with the parent (but is not moved or stretched)
|
| WorldSpaceDisplacementY | 1022 |
Also a 3D point that is scaled, rotated, and mirrored along with the parent (but is not moved or stretched)
|
| WorldSpaceDisplacementZ | 1032 |
Also a 3D point that is scaled, rotated, and mirrored along with the parent (but is not moved or stretched)
|
| WorldDirectionX | 1013 |
Also a 3D point that is rotated and mirrored along with the parent (but is not moved, scaled, or stretched)
|
| WorldDirectionY | 1023 |
Also a 3D point that is rotated and mirrored along with the parent (but is not moved, scaled, or stretched)
|
| WorldDirectionZ | 1033 |
Also a 3D point that is rotated and mirrored along with the parent (but is not moved, scaled, or stretched)
|
| Real | 1040 |
A real value.
|
| Distance | 1041 |
A real value that is scaled along with the parent entity
|
| ScaleFactor | 1042 |
Also a real value that is scaled along with the parent.
The difference between a distance and a scale factor is application-defined
|
| Int16 | 1070 |
A 16-bit integer (signed or unsigned).
|
| Int32 | 1071 |
A 32-bit signed integer.
|
See Also