bdeSetBlockParameterButtonDescription
Sets a description for a button, buttonParameterName, within block. Works with inline blocks. Super blocks are inlined blocks.
Syntax
bdeSetBlockParameterButtonDescription(block, buttonParameterName, description)
Inputs
- block
- The block that the button parameter is in.
- buttonParameterName
- The name of the button parameter.
- description
- A description of the button.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
bdeSetBlockParameterButtonDescription(block, 'button1', 'This is a button used within the user created block');