AboutSupportDeveloper GuideVersion 22.3.18

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;
}

Properties

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.