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
Arguments
Value Returned
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