Represents the DXF layer table section.

interface ILayersTable {
    handle: string;
    layers: Record<string, ILayer>;
    ownerHandle: string;
}

Hierarchy (view full)

Properties

handle: string

Unique handle identifier for this table.

layers: Record<string, ILayer>

Collection of layer definitions.

ownerHandle: string

Handle of the owner object.