bdeGetBlockParameterCallback
Returns a callback script of a parameter in a given block.
Syntax
callback = bdeGetBlockParameterCallback(block, parameter)
Inputs
- block
- The block that the parameter is in.
- parameter
- The parameter to get the callback script of.
Outputs
- callback
- The script to run when a dialog box is called.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
callback = bdeGetBlockParameterDescription(block, 'testParameter1');
callback = vssParametersCallbackfmuFileBrowserR