axlJPGUICustHiddenSections
axlJPGUICustHiddenSections(g_inst) =>l_hiddenSections
Description
Job Policy GUI Customization member function that returns a list of sections or fields to be hidden from the Job Policy Setup form.
Arguments
Value Returned
|
List of sections to be hidden from the Job Policy Setup form is returned. |
Examples
Specifies that the Timeouts (in Secs.) section is to be hidden from the Job Policy Setup form:
;; example setup
(defclass RemoteHost ( axlJPGUICust )
())
(defmethod axlJPGUICustHiddenSections ((inst RemoteHost) )
'(timeout))
Return to top