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

vfoGRSetCreateFormAllFieldsInvisible

vfoGRSetCreateFormAllFieldsInvisible(
{ t | nil }
)

Description

Sets the visible property for the predefined system fields, except the Technology and Device fields, on the Create Guard Ring form. This function cannot be used to set the properties of fields that you add while customizing the Create Guard Ring form.

See Customizing the Create Guard Ring Form for more information.

Arguments

t

Specifies that the fields or components should not be visible on the form. Consequently, apart from the Technology and Device fields on the Create Guard Ring form, all others become invisible.

nil

Specifies that all the fields or components should be visible on the form.

Value Returned

None

Example

The following code snippet shows how to hide all pre-defined GUI components except the Device and Technology fields using the vfoGRSetCreateFormAllFieldsInVisible SKILL function when the FGR implementation class different from the default vfoGuardRing class:

if(vfoGetImplementationClassName(libName  cellName) != "vfoGuardRing" then
vfoGRSetCreateFormAllFieldsInvisible(t)
else
vfoGRSetCreateFormAllFieldsInvisible(nil)
)

Return to top
 ⠀
X