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

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

g_inst

Instance of the class axlJPGUICust.

g_form

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

l_dataDpl

Property list to modify.

Value Returned

None

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