Interface defining the attributes for symbol table records.

Extends the base AcDbObjectAttrs interface and adds a name property that is required for all symbol table records.

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

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

name: string

The name of the symbol table record

objectId?: string

Unique identifier for the object

ownerId?: string

Identifier of the object that owns this object