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

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

x_width

The width of the xFGR Create form.

x_length

The length of the xFGR Create form.

Value Returned

t

The size of the form is set.

nil

The size of the form is not set.

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