bdeGetBlockParameterObjects

Returns the objects within the parameters section of a given block.

Syntax

objects = bdeGetBlockParameterObjects(block)

Inputs

block
The block to get the parameter objects from.
Type: block

Outputs

objects
The objects within the given parameters section.
Type: list

Examples

Get the objects of the parameter's section/tab within block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          objects = bdeGetBlockParameterObjects(block);
        

          
            objects =
            {
            [1,1] struct [
            class: parameter
            name: gain
            tabname: Parameters
            ]
            [2,1] struct [
            class: parameter
            name: overflow
            tabname: Parameters
            ]
            [3,1] struct [
            class: parameter
            name: mulmethod
            tabname: Parameters
            ]
            [4,1] struct [
            class: parameter
            name: externalActivation
            tabname: Parameters
            ]
            }