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.
Type: block
buttonParameterName
The name of the button parameter.
Type: string
description
A description of the button.
Type: string

Examples

Set the description of a button parameter in a block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSetBlockParameterButtonDescription(block, 'button1', 'This is a button used within the user created block');