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

vfoGRRegCreateFormUpdateCallback

vfoGRRegCreateFormUpdateCallback(
r_formPointer
t_procedureName
[ l_callbackList ]
)

Description

Registers the user-defined form customization procedure. This procedure gets called for the particular form pointer after the vfoGRUpdateCreateForm trigger is called.

Arguments

r_formPointer

The formPointer generated using vfoGRNewCreateForm.

t_procedureName

The name of the user-defined form customization procedure defined for the Create Guard Ring form.

l_callbackList

List of the callback procedures required for controlling the display of the OK, Cancel, and Apply buttons on the form. This is an optional argument.

Value Returned

None

Example

; create the new Create Guard Ring form and store its form pointer
form_modgen = vfoGRNewCreateForm ("MODGEN" 'OKCancelApply)
; register the callback for the given form pointer
vfoGRRegCreateFormUpdateCallback (form_modgen "vfoCustomize_modgen")
; define the callback 
procedure (vfoCustomize_modgen (formPointer
; write your own method body here related 
; to Create Guard Ring form updates
)
hiDisplayForm(form_modgen)

Return to top
 ⠀
X