bdeGetBlockParameterTextValue
Returns text value of a given text parameter, parameterName, within block.
Syntax
textVal = bdeGetBlockParameterTextValue(block, parameterName)
Inputs
- block
- The block that the text parameter is in.
- parameterName
- The name of the parameter to get text value of.
Outputs
- textVal
- The value of the text parameter in the block.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
texts = bdeGetBlockParameterTextValue(block, 'testTextParam');
textVal = testingText