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

Outputs

paramType
The type of the given parameter.
Type: string

Examples

Get a parameter's type:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          paramType = bdeGetBlockParameterType(block, 'testingParam');
        

          
            paramType = scalar