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

xfgrConfigureOptionsCB

xfgrConfigureOptionsCB( 
t_mode
s_callbackFunction
) 
=> t / nil

Description

Registers or de-registers the specified user-defined callback function against xfgrConfigureOptions.

Arguments

t_mode

The function mode.
Valid values: r for registration and d for de-registration.

s_callbackFunction

The name of the user callback function.

Value Returned

t

The function is successful.

nil

The function is not successful.

Example

Registers the myInit function.

procedure(myInit()
let(()
xfgrAddOption(?optionName "testOptionStringLineEdit2" ?optionLabel "LineEdit String Label" ?optionType "string" ?optionWidgetType  "lineedit" ?groupName "" ?optionDefaultValue "fgr")
    )
)
xfgrConfigureOptionsCB("r" "myInit")

Return to top
 ⠀
X