bdeGetBlockParameterType
Returns the type of a parameter in a given block.
Syntax
paramType = bdeGetBlockParameterType(block, parameter)
Inputs
- block
- The block that the parameter is in.
- parameter
- The parameter to get the type of.
Outputs
- paramType
- The type of the given parameter.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
paramType = bdeGetBlockParameterType(block, 'testingParam');
paramType = scalar