MLightCAD
    Preparing search index...

    Configuration options for AcApProgress.

    interface AcApProgressOptions {
        borderWidth?: string;
        color?: string;
        host?: HTMLElement;
        message?: string;
        overlay?: boolean;
        overlayColor?: string;
        showBrand?: boolean;
        size?: string;
    }
    Index

    Properties

    borderWidth?: string

    Width of the spinner border stroke. Should be a valid CSS length value.

    "4px"

    color?: string

    Color of the animated spinner arc. Accepts any valid CSS color format.

    "#0b84ff"

    host?: HTMLElement

    Host element where overlay is mounted. Use the CAD view container so mask is scoped to canvas area.

    document.body

    message?: string

    Optional message text displayed under the spinner. Hidden automatically if empty or undefined.

    ""

    overlay?: boolean

    Whether a fullscreen overlay background is shown.

    true

    overlayColor?: string

    Background color used when overlay is enabled.

    "rgba(0,0,0,0.18)"

    showBrand?: boolean

    Whether to show the mlightcad icon inside the spinner ring and the brand wordmark beneath it.

    true

    size?: string

    Size of the circular loader (width & height). Accepts any valid CSS length value (e.g. "48px", "3rem", "25%").

    "72px" when showBrand is true, otherwise "48px"