bdeSetBlockParameterRowSize

Sets the rowSize for a parameter within block. Works only with parameters that have the widget type table. Works with inline blocks. Super blocks are inlined blocks.

Syntax

bdeSetBlockParameterRowSize(block, parameter, rowSize)

Inputs

block
The block that the parameter is in.
Type: block
parameter
The name of the parameter.
Type: string
rowSize
The value to set the row size to.
Type: string

Examples

Set the row size of a parameter in a block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSetBlockParameterRowSize(block, 'parameter1', '2');