bdeGetBlockParameterTexts
Returns text parameters of a given block.
Syntax
texts = bdeGetBlockParameterTexts(block)
Inputs
- block
- The block to get the text parameters from.
Outputs
- texts
- The text parameters of the block.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
texts = bdeGetBlockParameterTexts(block, 'parameter1');
texts =
{
[1,1] struct [
name: TestText
tabname: TextParams
]
}