bdeHideBlockParameter

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

Syntax

bdeHideBlockParameter(block, parameter)

Inputs

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

Examples

Set the visibility of a given parameter within a block to be false/not visible:

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