relxInitOptionsInCdsenv
relxInitOptionsInCdsenv(o_tool) =>nil
Description
Creates environment variables for the customized options added to the Reliability Options form.
You need to define this function in the .cdsinit file. You need not call it.
Arguments
Value Returned
Examples
Add the following SKILL code in the .cdsinit file to add the customized variables circuitReport and circuitReportPath in the .cdsenv file: .
(defun relxInitOptionsInCdsenv (tool)
relxAddReliabilityOption( tool ?name 'circuitReport
?type 'Boolean
?value nil
?page "Custom"
?private t
)
relxAddReliabilityOption( tool
?name 'circuitReportPath
?type 'string
?value ""
?page "Custom"
?private t
)
)
Return to top