bdeGetBlockParameterButtonDescription
Returns the value of buttonParameter in a given block.
Syntax
description = bdeGetBlockParameterButtonDescription(block, buttonParameter)
Inputs
- block
- The block that the parameter is in.
- buttonParameter
- The name of the button parameter.
Outputs
- description
- A description of the button parameter.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
description = bdeGetBlockParameterButtonDescription(block, 'button1');
description = This is a button used within the user created block