Creates a new AcDbLayerIndex instance.
Gets the attributes object for this AcDbObject.
The AcCmObject instance containing all attributes
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
Returns grouped layer-index entries derived from the parallel DXF arrays.
An array of AcDbLayerIndexEntry values.
Replaces this index from grouped layer-index entries.
The entries to store.
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
Gets a copy of the IDBUFFER entry counts stored in this index.
An array of IDBUFFER entry counts.
Replaces the IDBUFFER entry counts stored in this index.
The new list of entry counts.
Gets a copy of the IDBUFFER object IDs referenced by this index.
An array of hard-owner IDBUFFER handles.
Replaces the IDBUFFER object IDs referenced by this index.
The new list of IDBUFFER handles.
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.
Returns whether this index is considered up to date.
true if the index is current; otherwise false.
Sets whether this index is considered up to date.
true if the index is current.
Gets the local last-updated timestamp for this index.
The last-updated timestamp.
Sets the local last-updated timestamp for this index.
The new timestamp value.
Gets the UTC last-updated timestamp for this index.
The UTC last-updated timestamp.
Sets the UTC last-updated timestamp for this index.
The new UTC timestamp value.
Gets a copy of the layer names stored in this index.
An array of layer names.
Replaces the layer names stored in this index.
The new list of layer names.
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
ProtectedassignAssociates this object with a database. Subclasses may override database
and call this helper to avoid super setter restrictions.
Computes (rebuilds) this layer index from a layer table and block table record.
OptionallayerTable: AcDbLayerTableLayer table used as the index source.
OptionalblockTableRecord: AcDbBlockTableRecordBlock table record being indexed.
true if the compute succeeded.
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
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 layer index 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
Creates a filtered block iterator for the given layer filter query.
The filter defining the query (typically an AcDbLayerFilter).
Always null until filtered iteration is implemented.
ProtectedrebuildRemoves 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 the value of an attribute.
The name of the attribute to set
Optionalval: AcDbObjectAttrs[A]The value to assign to the attribute
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
Layer index object used with the AutoCAD index/filter scheme.
An AcDbLayerIndex is an index implementation specialized for layers. It is typically associated with a block table record and used together with AcDbLayerFilter when regenerating xrefs and blocks under the
INDEXCTLsystem variable.Remarks
Mirrors the ObjectARX
AcDbLayerIndexclass. In DXF this object is written as typeLAYER_INDEXwith subclass markersAcDbIndexandAcDbLayerIndex.See
https://help.autodesk.com/view/OARX/2024/ENU/?guid=OARX-RefGuide-AcDbLayerIndex
Example