bdeGetBlockParameterTexts

Returns text parameters of a given block.

Syntax

texts = bdeGetBlockParameterTexts(block)

Inputs

block
The block to get the text parameters from.
Type: block

Outputs

texts
The text parameters of the block.
Type: list

Examples

Get the parameter texts from a block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          texts = bdeGetBlockParameterTexts(block, 'parameter1');
        

          
            texts =
            {
            [1,1] struct [
            name: TestText
            tabname: TextParams
            ]
            }