asiChangeKeepOptionFormProperties
asiChangeKeepOptionFormProperties(
o_tool
[ ?type s_type ]
[ ?width x_width ]
[ ?columns x_columns ]
)
=> o_formObj / nil
Description
Changes the display characteristics of the Keep Options form.
Arguments
|
o_tool
|
Simulation tool object.
|
|
?type s_type
|
Specifies the form type.
Valid Values:
-
’oneD—Specifies a sequential display of fields in one column.
-
’twoD—Specifies a two dimensional display of fields based on row and column positions. (Use the asiAddKeepOption or asiChangeKeepOption function to specify values for the rows and columns.)
-
’custom—Lets you specify the exact coordinate locations for each field. (Use the asiAddKeepOption or asiChangeKeepOption function to specify the coordinates.)
-
’matrix—Specifies a matrix of equally sized fields.
Default Value: ’oneD
|
|
?width x_width
|
Width of the form, in pixels.
Default Value: The minimum default width of the form is 400 pixels. If the fields require more space than this, the form defaults to the smallest width that can accommodate the fields.
|
|
?columns x_columns
|
Number of columns. Use this argument only with matrix type forms.
Default Value: 2
|
Value Returned
|
o_formObj
|
Returns the keep option form object if successful.
|
|
nil
|
Indicates an error.
|
Examples
asiChangetKeepOptionFormProperties( asiGetTool(’Spectre)
?width 300 )
For the Spectre simulator, changes the width of the Keep Options form to 300.
Return to top