bdeShowBlockParameter

Sets the visibility of parameter within block to be visible. Works with inline blocks. Super blocks are inlined blocks.

Syntax

bdeShowBlockParameter(block, parameter)

Inputs

block
The block that the parameter is in.
Type: block
parameter
The parameter to set the visibility to true.
Type: string

Examples

Set the visibility of a given parameter within a block to be true:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeShowBlockParameter(block, 'testParam');