Creates a new line type table record.
Optionalattrs: Partial<AcDbLinetypeTableRecordAttrs>Input attribute values for this linetype table record
OptionaldefaultAttrs: Partial<AcDbLinetypeTableRecordAttrs>Default values for attributes of this linetype table record
Gets the attributes object for this AcDbObject.
The AcCmObject instance containing all attributes
Gets the description or comments associated with this line type.
This property provides additional information about the line type, such as its intended use or any special characteristics.
The description text for the line type
Gets the database in which this object is resident.
When an object isn't added to a database, this property returns the current working database. After it is added to a database, it will be set automatically. You should never set this value manually.
The database this object belongs to
Sets the database for this object.
This is typically set automatically when the object is added to a database. Manual setting should be avoided unless you know what you're doing.
The database to associate with this object
Gets the objectId of the extension dictionary owned by this object.
If the object does not have an extension dictionary, this returns undefined.
In ObjectARX terms, this is equivalent to AcDbObject::extensionDictionary().
The extension dictionary objectId, or undefined
Sets the objectId of the extension dictionary owned by this object.
This does not create or delete the dictionary object itself ??it only establishes or clears the ownership relationship.
Passing undefined removes the association.
The extension dictionary objectId, or undefined
Returns true if this object is temporary and not yet committed to the database.
A temporary object is identified by its objectId starting with the TEMP prefix.
Gets the line type style object used by the renderer.
Returns a snapshot assembled from stored attributes. Mutating the returned object does not update this table record; use the dedicated setters instead.
The line type style object assembled from stored attributes
Gets or sets the name of the symbol table record.
This property corresponds to DXF group code 2 and is used for identifying and referencing the symbol table record.
The name of the symbol table record
Gets the number of dash elements in the line type pattern.
This value represents the total count of dashes, spaces, dots, and other pattern elements that make up the line type. It corresponds to DXF group code 73 in the AutoCAD file format.
The number of pattern elements in the line type
Gets the object ID.
AutoCAD uses 64-bit integers to represent handles, which exceed the maximum integer value of JavaScript. Therefore, strings are used to represent object handles.
The object ID as a string
Sets the object ID.
The new object ID
Gets the object ID of the owner of this object.
The owner object ID
Sets the object ID of the owner of this object.
The new owner object ID
Gets the total pattern length in AutoCAD drawing units.
The pattern length represents the total length of all dashes and spaces when the line type scale is 1.0. This value is used to calculate how the pattern repeats along a line.
Note: Embedded shapes or text strings do not add to the pattern length because they are overlaid and do not interrupt the actual dash pattern.
The total length of the line type pattern in drawing units
ProtectedassertProtectedassignAssociates this object with a database. Subclasses may override database
and call this helper to avoid super setter restrictions.
Creates the extension dictionary for this object if it does not already exist.
This method closely mirrors the behavior of
AcDbObject::createExtensionDictionary() in ObjectARX.
The objectId of the extension dictionary
Gets the length of a specific dash element in the line type pattern.
Each dash element in the pattern has a specific length that determines how it appears when the line type is rendered. Positive values represent visible dashes, while negative values represent spaces (pen up).
Zero-based index of the dash element. Must be greater than or equal to zero, but less than the value of property 'numDashes'
The length of the specified dash element in drawing units
Reads this object from a DXF filer (ObjectARX dxfIn).
Reads common handle/owner fields, then delegates to dxfInFields. XData (group 1001+) is consumed when present after object fields.
Group-102 control strings ({ACAD_XDICTIONARY, {ACAD_REACTORS, …) are
consumed here so subclass readers still see handle/owner/subclass markers
that follow them. Many real DXF writers emit these blocks on LAYER and
entity records; skipping them would leave name/layer unset.
ProtecteddxfConsumes a DXF group-102 control-string block that was already opened
(the opening 102 value is startValue, typically {ACAD_XDICTIONARY
or {ACAD_REACTORS).
For {ACAD_XDICTIONARY, the first soft-owner handle (360) is stored as
extensionDictionary. Other control strings are skipped until the
matching closing 102 / }.
Reads object-specific DXF fields (ObjectARX dxfInFields).
Subclasses should override, call super.dxfInFields(filer) first when
appropriate, then consume their subclass marker and fields in an
order-independent loop.
Per the AutoCAD DXF specification, readers must ignore undefined group
codes and must not assume field order. Within a subclass loop the
correct unknown-code behavior is break (skip and continue). Use
pushBackItem only to hand a group-100 subclass marker (or XData) to
another reader — never to abort on an unrecognized optional code.
ProtecteddxfConsume XData pairs starting at group 1001 until end of object.
Writes DXF fields for this object.
DXF output writer.
The instance (for chaining).
ProtecteddxfEmit all attached XData buffers (DXF groups 1000–1071).
Gets the value of the specified attribute.
This method will throw an exception if the specified attribute doesn't exist. Use getAttrWithoutException() if you want to handle missing attributes gracefully.
The name of the attribute to retrieve
The value of the specified attribute
Gets the value of the specified attribute without throwing an exception.
This method returns undefined if the specified attribute doesn't exist, making it safer for optional attributes.
The name of the attribute to retrieve
The value of the specified attribute, or undefined if it doesn't exist
Retrieves the XData associated with this object for a given application ID.
Extended Entity Data (XData) allows applications to attach arbitrary, application-specific data to an AcDbObject. Each XData entry is identified by a registered application name (AppId) and stored as an AcDbResultBuffer.
This method is conceptually equivalent to AcDbObject::xData() in ObjectARX,
but simplified to return the entire result buffer for the specified AppId.
The application ID (registered AppId name) that owns the XData
The AcDbResultBuffer associated with the AppId, or undefined
if no XData exists for that AppId
Removes the XData associated with the specified application ID.
After removal, calls to getXData() for the same AppId will return undefined.
If no XData exists for the given AppId, this method has no effect.
This mirrors the behavior of clearing XData for a specific application in ObjectARX rather than removing all XData from the object.
The application ID whose XData should be removed
Restores internal state from a detached clone while preserving identity fields.
Clone produced by clone or clonePreservingIdentity.
Sets an attribute after verifying the record is open for write.
Symbol table records follow ObjectARX semantics: existing database records must be opened with AcDbDatabase.openObjectForWrite before mutation.
Optionalval: AcDbLinetypeTableRecordAttrs[A]Attaches or replaces XData for this object.
If XData already exists for the given AppId, it is replaced by the provided AcDbResultBuffer. The caller is responsible for ensuring that:
This method is conceptually similar to AcDbObject::setXData() in ObjectARX.
The result buffer containing the XData to attach
Converts this linetype preview to an SVG string.
The preview is rendered as a horizontal line centered in the SVG viewport. Positive pattern elements are drawn as visible strokes, negative elements are treated as gaps, and zero-length elements are rendered as dots.
Optionaloptions: AcDbLinetypePreviewSvgOptionsPreview rendering options
SVG string for linetype preview
Represents a record in the line type table within the AutoCAD drawing database.
Each line type table record contains the information necessary to define a specific line type, including its pattern, description, and rendering characteristics. Line types define how lines are drawn, including patterns of dashes, dots, and spaces.
Within the line type table record, the dashes (line segments that make up characteristics of the linetype) are stored in a list with an index that is zero based. If the linetype is complex, then embedded shapes or text strings are stored in the list at the same index as the dash that preceded them in the linetype definition. So there will always be a dashLength for any valid index in the list, even if there is a shape or text string sharing the same index. When the linetype is elaborated, a shape's insertion point will coincide with the end of the dash that it shares an index with.