Execute process callback function

{
onExecute: (clientData: LPVOIDType) => {
console.log('Execute process callback:', clientData);
}
}
interface ExecuteProcCallbacksType {
    onExecute?: (clientData: LPVOIDType) => void;
}

Properties

Properties

onExecute?: (clientData: LPVOIDType) => void

A callback that is called whenever a menu item, toolbar button or ribbon element is executed. It implements whatever the menu item, toolbar button or ribbon element does.

Type declaration

    • (clientData: LPVOIDType): void
    • Parameters

      • clientData: LPVOIDType

        User-supplied data that was passed when

      Returns void