axlJPGUICustReadFromForm
axlJPGUICustReadFromForm(
g_inst
g_form
l_dataDpl
)
=> nil
Description
Job Policy GUI Customization member function to read any HI customization into a property list that will be saved as a job policy.
Arguments
|
Form to be read. HI field customizations added by |
||
Value Returned
|
|
||
Examples
;; example setup
(defclass RemoteHost ( axlJPGUICust ) ()) (defmethod axlJPGUICustHIFields ((inst RemoteHost) yoffset) `((,(hiCreateStringField ?name 'RemoteHostName
?prompt "Host"
?invisible nil)
(20 ,yoffset)
(370 30) 147))
)
;; readfromform method. This will store the GUI's value as the job policy
property remotehostname (defmethod axlJPGUICustReadFromForm ((inst RemoteHost) form dataDpl) (putprop dataDpl form->RemoteHostName->value 'remotehostname))
Return to top