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.
 
Outputs
- tabs
 - A list that contains the different tabs of parameters within a block.
 
Examples
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          tabs = bdeGetBlockParameterTabs(block);
        
        
          
            tabs =
            {
            [1,1] Parameters
            [2,1] testTab
            }