Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

relxSetReliabilityOptionFormProperties

relxSetReliabilityOptionFormProperties(
t_toolName
[ ?title t_title ]
[ ?width d_width ]
[ ?height d_height ]
[ ?columns d_columns ]
[ ?help s_help ]
[ ?type t_type ]
[ ?groupType t_groupType ]
[ ?pageList l_pageList ]
)
=> o_formObj / nil

Description

Sets the various properties of the Reliability form.

Arguments

t_toolName

Name of the tool.

?title t_title

Title of the form.

?width d_width

Width of the form (in pixels).

?height d_height

Height of the form (in pixels).

?column d_columns

Number of columns.

?help s_helpSymbol

Help symbol of the form.

?type t_Type

Type of the form. Indicates if the form covers one page or multiple pages.
Possible values: oneD or multiPage.

?groupType t_groupType

Group type to be used in a multiple page form.
Possible values: tabs or trees.

?pageList t_title

List of pages and their types.

Value Returned

o_formObj

Returns the Reliability form object.

nil

For any other tools, returns nil.Also There is an error.

Examples

Consider the example given below, in which you create an ADE L session using Spectre and run this function using the following argument values:

relxSetReliabilityOptionFormProperties ( 
tool
?title "Reliability"
?width 600
?height 80
?type 'multiPage
?groupType 'tabs
?pageList list(list("Page1" 'custom) list("Page2" 'custom))
)

Return to top
 ⠀
X