bdeGetBlockParametersValues

Gets the values of the parameters in block.

Syntax

values = bdeGetBlockParametersValues(block)

Inputs

block
The block that has the parameters to get the values of.
Type: block

Outputs

values
The values of the parameters in block.
Type: ParameterValues

Examples

Get the reset parameters of block's template:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          values = bdeGetBlockParametersValues(block)
        

          
            values = struct [
            parameter1: struct [
            testSubParamColumn:
            {
            [1,1] testSubParam
            [2,1] testSubParam
            }
            ]
            ]