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.
Type: block
parameter
The parameter to get the callback script of.
Type: string

Outputs

callback
The script to run when a dialog box is called.
Type: string

Examples

Get a parameter's callback script:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          callback = bdeGetBlockParameterDescription(block, 'testParameter1');
        

          
            callback = vssParametersCallbackfmuFileBrowserR