MLightCAD
    Preparing search index...

    Interface AcApBlockInsertSessionOptions

    Options applied to the next -INSERT run when started from the Blocks palette / ribbon gallery (AutoCAD Blocks palette Options panel).

    Consumed once by AcApInsertCmd at the start of execute.

    interface AcApBlockInsertSessionOptions {
        repeatPlacement?: boolean;
        rotationDeg?: number;
        scaleX?: number;
        scaleY?: number;
        scaleZ?: number;
        specifyRotation?: boolean;
        specifyScale?: boolean;
    }
    Index

    Properties

    repeatPlacement?: boolean

    After a successful insert, prompt for another insertion of the same block.

    rotationDeg?: number

    Rotation in degrees when not specifying on-screen.

    scaleX?: number
    scaleY?: number
    scaleZ?: number
    specifyRotation?: boolean

    When true, prompt for rotation; otherwise use rotationDeg. Default true.

    specifyScale?: boolean

    When true, prompt for scale; otherwise use scaleX/Y/Z. Default true.