执行进程回调函数

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

Properties

Properties

onExecute?: (clientData: LPVOIDType) => void

每当菜单项、工具栏按钮或功能区元素被执行时调用的回调函数。它实现菜单项、工具栏按钮或功能区元素所执行的具体操作。

Type declaration

    • (clientData: LPVOIDType): void
    • Parameters

      • clientData: LPVOIDType

        用户在传递时提供的数据

      Returns void