bdeGetBlockSubParameterNames
Returns the names of the sub parameters within a given block.
Syntax
subParams = bdeGetBlockSubParameterNames(block, parameter)
Inputs
- block
- The block to get the parameters of.
- parameter
- The name of the parameter to get the sub parameters of.
Outputs
- subParams
- A list of the sub parameters within a given parameter.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
subParams = bdeGetBlockSubParameterNames(block, 'parameter1');
subParams =
{
[1,1] parameter1/testSubParamColumn
}