bdeGetBlockParameterTabs

Returns a list of the different section tabs of parameters within the block.

Syntax

tabs = bdeGetBlockParameterTabs(block, parameter)

Inputs

block
The block to get the parameter sections/tabs of.
Type: block

Outputs

tabs
A list that contains the different tabs of parameters within a block.
Type: list

Examples

Get the section tabs of parameters within a block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          tabs = bdeGetBlockParameterTabs(block);
        

          
            tabs =
            {
            [1,1] Parameters
            [2,1] testTab
            }