axlJPGUICustHIFields
axlJPGUICustHIFields(g_inst x_offset) =>l_fields
Description
Job Policy GUI Customization member function to create the HI field displayed for a particular JP GUI customization. The Job Policy GUI calls this method once during initialization. If no customizations are desired, the function does not need to be specialized.
Arguments
|
Initial form offset. Any HI fields created must be based on this offset |
||
Value Returned
Examples
Returns the list of HI form elements.
;; example setup
(defclass RemoteHost ( axlJPGUICust ) ()) ;; hifields method (defmethod axlJPGUICustHIFields ((inst RemoteHost) yoffset) `((,(hiCreateStringField ?name 'RemoteHostName
?prompt "Host"
?invisible nil)
(20 ,yoffset)
(370 30) 147))
)
Return to top