Control.Show Method (Typed) | |
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
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual void Show()
Request Example
View SourceRemarks
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