relxCustomizeDisplayOrEnableStatus
relxCustomizeDisplayOrEnableStatus(r_formObject) =>t
Description
Defines the display and enable status of the disclosures, fields, and tabs.
Arguments
Value Returned
Example
Add the following SKILL code in the .cdsinit file to:
- Disable the Degradation and Output tabs
- Disable the Age Modeling section on the Modeling tab
- Hides the Unified Reliability Interface (URI) Models disclosure from the Modeling tab
(defun relxCustomizeDisplayOrEnableStatus (relxOptionForm)
relxEnableFormTab(relxOptionForm "Degradation" nil)
relxEnableFormTab(relxOptionForm "Output" nil)
relxEnableDiscField(relxOptionForm "Age Modeling" nil)
relxDisplayDiscField(relxOptionForm "Unified Reliability Interface (URI) Models" nil)
)

Return to top