WebCAD-Lib-TS API 文档 - v1.0.0
    Preparing search index...

    Interface ISaveDrawingDialogResult

    保存图纸对话框结果

    interface ISaveDrawingDialogResult {
        action: "cancel" | "save" | "forceUpdate";
        mode?: "update" | "saveAs" | "new";
        type?: "imports" | "designs";
        drawingName?: string;
        author?: string;
        remark?: string;
        forceUpdate?: boolean;
    }
    Index

    Properties

    action: "cancel" | "save" | "forceUpdate"

    操作类型

    mode?: "update" | "saveAs" | "new"

    保存模式

    type?: "imports" | "designs"

    图纸类型

    drawingName?: string

    图纸名称

    author?: string

    作者

    remark?: string

    备注

    forceUpdate?: boolean

    强制更新(忽略冲突)