Click or drag to resize

XDataCode Enumeration

Defines the extended data code.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public enum XDataCode
Members
  Member nameValueDescription
String1000 Strings in extended data can be up to 255 bytes long.
AppReg1001 Application names can be up to 31 bytes long.
ControlString1002 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.
LayerName1003 Name of the layer associated with the extended data
BinaryData1004 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.
DatabaseHandle1005 Handles of entities in the drawing database.
RealX1010 Three real values, in the order X, Y, Z. They can be used as a point or vector record. AutoCAD never alters their value.
RealY1020 Three real values, in the order X, Y, Z. They can be used as a point or vector record. AutoCAD never alters their value.
RealZ1030 Three real values, in the order X, Y, Z. They can be used as a point or vector record. AutoCAD never alters their value.
WorldSpacePositionX1011 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
WorldSpacePositionY1021 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
WorldSpacePositionZ1031 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
WorldSpaceDisplacementX1012 Also a 3D point that is scaled, rotated, and mirrored along with the parent (but is not moved or stretched)
WorldSpaceDisplacementY1022 Also a 3D point that is scaled, rotated, and mirrored along with the parent (but is not moved or stretched)
WorldSpaceDisplacementZ1032 Also a 3D point that is scaled, rotated, and mirrored along with the parent (but is not moved or stretched)
WorldDirectionX1013 Also a 3D point that is rotated and mirrored along with the parent (but is not moved, scaled, or stretched)
WorldDirectionY1023 Also a 3D point that is rotated and mirrored along with the parent (but is not moved, scaled, or stretched)
WorldDirectionZ1033 Also a 3D point that is rotated and mirrored along with the parent (but is not moved, scaled, or stretched)
Real1040 A real value.
Distance1041 A real value that is scaled along with the parent entity
ScaleFactor1042 Also a real value that is scaled along with the parent. The difference between a distance and a scale factor is application-defined
Int161070 A 16-bit integer (signed or unsigned).
Int321071 A 32-bit signed integer.
See Also