axlJPGUICustWriteToForm
axlJPGUICustWriteToForm(
g_inst
g_form
l_dataDpl
)
=> nil
Description
Job Policy GUI Customization member function to load a property list that is saved as a job policy into HI customizations.
Arguments
Value Returned
|
|
||
Examples
Loads the property list that is saved as a job policy into HI customizations.
;; 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 set the GUI's value from the job policy
property remotehostname
(defmethod axlJPGUICustWriteToForm ((inst RemoteHost) form dataDpl) form->RemoteHostName->value = dataDpl->remotehostname)
Return to top