Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

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

g_inst

Instance of the class axlJPGUICust.

g_form

Form to be read. HI field customizations added by axlJPGUICustHIFields are the properties on the form.

l_dataDpl

Property list to read. The property names would have been saved by a previous call to axlJPCustReadFromForm.

Value Returned

None

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
 ⠀
X