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

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

l_size

The size of the xFGR Create form.

nil

The function is not successful.

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
 ⠀
X