BimCT SDK / WebGL2 Viewer
    Preparing search index...

    Interface BimCTCustomMenuItem

    Interface representing a custom menu item for BimCT.

    interface BimCTCustomMenuItem {
        type?: "item" | "separator";
        text?: string | BimCTTextCallback;
        shortcut?: string | BimCTTextCallback;
        click?: BimCTMenuEventCallback;
        enabled?: BimCTMenuEnabledCallback;
        visible?: BimCTMenuVisibleCallback;
        checked?: BimCTMenuCheckedCallback;
        hookIndex?: number;
    }
    Index

    Properties

    type?: "item" | "separator"
    text?: string | BimCTTextCallback
    shortcut?: string | BimCTTextCallback
    click?: BimCTMenuEventCallback
    enabled?: BimCTMenuEnabledCallback
    visible?: BimCTMenuVisibleCallback
    checked?: BimCTMenuCheckedCallback
    hookIndex?: number