Click or drag to resize

Control.Show Method (Typed)

X#
Display a control so it is visible.

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD Show() AS VOID CLIPPER
Request Example View Source
Remarks
The default state when a control is created depends on the way you placed the control: With dynamic creation, the control remains invisible until you invoke Control:Show(). This allows the program to set up the control correctly (with the correct size, position, and any other parameters), while avoiding the "visual noise" of changing controls. With resource-bound instantiation, the control is automatically shown, without requiring a call to Control:Show(). Control:Show() is also usually called to redisplay a control that was hidden with the Control:Hide() method.
See Also