axlRegisterJPGUICust
axlRegisteredJPGUICust(
S_name
g_inst
)
=> t
Description
Job Policy GUI Customization member function to register a customization into the Job Policy Setup form. Any registered customizations will appear the next time the job policy Setup form is displayed.
Arguments
Value Returned
|
The customization is registered in the Job Policy Setup form. |
||
Examples
Registers the customization in the Job Policy Setup form.
;; example setup
(defclass RemoteHost ( axlJPGUICust ) ())
;; axlRegisterJPGUICust method
axlRegisterJPGUICust("Remote Machine" makeInstance('RemoteHost))
=> t
Return to top