xfgrSetFormSize
xfgrSetFormSize(
x_width
x_length
)
=> t / nil
Description
Sets the size of the xFGR Create form. You can use this function from the xFGR Create form customization callback functions.
Arguments
Value Returned
Example
Sets the 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