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

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

g_inst

Instance of the class axlJPGUICustHIFields.

x_offset

Initial form offset. Any HI fields created must be based on this offset

Value Returned

l_fields

List of HI form elements is 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
 ⠀
X