xfgrGetFormSize
xfgrGetFormSize(
)
=> l_size / nil
Description
Returns the size of the xFGR Create form.This function is used from the xFGR Create form customization callback functions.
Arguments
None
Value Returned
Example
Returns size of the xFGR Create form.
procedure(fgrCreateFormInit() let((formSize) formSize = xfgrGetFormSize() when(formSize
xfgrSetFormSize(car(formSize)+50 cadr(formSize)+50)
)
)
)
xfgrConfigureOptionsCB("r" "fgrCreateFormInit")
Return to top