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.
 
Outputs
- values
 - The values of the parameters in block.
 
Examples
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          values = bdeGetBlockParametersValues(block)
        
        
          
            values = struct [
            parameter1: struct [
            testSubParamColumn:
            {
            [1,1] testSubParam
            [2,1] testSubParam
            }
            ]
            ]