OpenFin Workspace Platform API
    Preparing search index...

    Interface CustomButtonActionPayload

    The shape of the payload sent by a custom button click to a custom action handler

    interface CustomButtonActionPayload {
        callerType: CustomButton;
        customData: any;
        windowIdentity: Identity_4;
        x: number;
        y: number;
    }
    Index
    callerType: CustomButton

    Calling the CustomButton type

    customData: any

    Any data necessary for the functioning of specified custom action

    windowIdentity: Identity_4

    Identity for the current window.

    x: number

    Screen x-coordinate where custom button should be shown.

    y: number

    Screen y-coordinate where custom button should be shown.