Interface defining the attributes that can be associated with an AcDbObject.

Extends the base AcCmAttributes interface and adds object-specific attributes like objectId and ownerId.

interface AcDbObjectAttrs {
    objectId?: string;
    ownerId?: string;
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

Properties

objectId?: string

Unique identifier for the object

ownerId?: string

Identifier of the object that owns this object