bdeSetBlockParametersPostCallback

Sets the script for post callback for a block, which will happen after pressing ok on the dialog box. Works with inline blocks. Super blocks are inlined blocks.

Syntax

bdeSetBlockParametersPostCallback(block, script)

Inputs

block
The block to add a script for.
Type: block
script
The script to run after pressing ok on a dialog box.
Type: string

Examples

Add a button parameter to a block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSetBlockParametersPostCallback(block, 'iconnames = bdeGetBlockTextIconNames;');