bdeGetBlockParameterTab
Returns the section that the parameter is in within block.
Syntax
section = bdeGetBlockParameterTab(block, parameter)
Inputs
- block
- The block to get the parameter section from.
- parameter
- The parameter used to get the section tab.
Outputs
- section
- The section tab that the parameter is in.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
section = bdeGetBlockParameterTab(block, 'testParameter');
section = Parameters