MLightCAD
    Preparing search index...

    Describes basic layer state information within the editor view.

    Contains the layer's display name and common visibility/freeze flags.

    interface AcEdLayerInfo {
        color: AcCmColor;
        isFrozen: boolean;
        isOff: boolean;
        name: string;
    }
    Index

    Properties

    color: AcCmColor

    Layer color

    isFrozen: boolean

    When true, the layer is frozen (entities are hidden from display and don't participate regen.).

    isOff: boolean

    When true, the layer is turned off (entities are hidden from display but still participate regen).

    name: string

    Human-readable layer name.