Describes one layer entry stored in an AcDbLayerIndex.

LAYER_INDEX DXF objects store parallel arrays of layer names (group 8), hard-owner IDBUFFER handles (group 360), and IDBUFFER entry counts (group 90). This type groups those related values for convenience.

interface AcDbLayerIndexEntry {
    idBufferEntryCount: number;
    idBufferId: string;
    layerName: string;
}

Properties

idBufferEntryCount: number

Number of entries in the associated IDBUFFER (DXF group code 90).

idBufferId: string

Hard-owner handle of the associated IDBUFFER object (DXF group code 360).

layerName: string

Layer name (DXF group code 8).