relxInitReliabilityOption
relxInitReliabilityOption (t_toolName) =>nil
Description
Initializes the Reliability Option form in the specified tool. You can rewrite this function by using unit functions relxAddReliabilityOption and relxSetReliabilityOptionFormProperties.
Arguments
|
Name of the tool in which the Reliability Option form is to be initialized. |
Value Returned
|
This function can be rewritten to return any user specified value. |
Examples
In this example, the function initializes the Reliability Option form in the specified tool.
relxInitReliabilityOption(tool)
The example below shows the function code used to rewrite the relxInitReliabilityOption function:
(defmethod relxInitReliabilityOption ((tool asiAnalogAdapter)) (let ((xOrig 5) (yOrig 10) (delta 35) (fieldWidth 600) (labelWidth 260) (yCoor 10))
pageList = list(list("Basic" 'custom) list("Advanced" 'custom)) relxSetReliabilityOptionFormProperties( tool
?title "Reliability"
?width xOrig*2+fieldWidth
?height yOrig+delta*30
?type 'multiPage
?groupType 'tabs
?pageList pageList
)
))
Return to top