TreeINFO-For-M365 documentation
    Preparing search index...

    Interface ActionButton

    Example:

    {
    "Title": "Action.Addendum.Title",
    "ToolTipDescription": "Action.Addendum.ToolTipDescription",
    "ID": "Addendum",
    "CommandFunction": "btnAddendumCommand",
    "EnabledFunction": "actionBtnEnabled",
    "Icon": {
    "Icon": "regular/folderPlus"
    }
    }
    interface ActionButton {
        CommandFunction: string;
        EnabledFunction?: string;
        Icon: ActionButtonIcon;
        ID: string;
        Title: string;
        ToolTipDescription?: string;
        VisibleFunction?: string;
    }
    Index

    Properties

    CommandFunction: string

    Name of a function in CustomScript, that gets called when user click on the action button.

    EnabledFunction?: string

    Name of a function in CustomScript, that determines if the action button is enabled or not.

    Action button is enabled if parameter is undefined.

    Icon of the action button.

    ID: string

    Uniqe identifier of the action button.

    Title: string

    Dipslay name of the action button.

    ToolTipDescription?: string

    Text that gets shown when user hovers over the action button.

    VisibleFunction?: string

    Name of a function in CustomScript, that determines if the action button is visible or not.

    Action button is visible if parameter is undefined.