Window.Show Method | |
Display this window.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Show(
kShowState
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual Show(
Usual kShowState = default
)
Request Example
View SourceParameters
- kShowState (Optional)
- Type: Usual
The constant that represents how the window is shown. Valid values are:
Return Value
Type:
UsualNIL
Remarks Constant | Description |
---|
SHOWCENTERED
| Shows the window centered within its owner window. If the owner is the desktop, the window is centered on the screen. |
SHOWICONIZED
| Shows the window initially as an icon |
SHOWNORMAL
|
Shows the window on its owner, in a size chosen by the owner. If the owner is the desktop,
the window appears quite large but may not fill the whole desktop. You can control the window's
size precisely, if you want, with Window:Size and Window:Origin. This is the default.
|
SHOWZOOMED |
Shows the window at the maximum size allowed by its owner. If the owner is the desktop, the window occupies
the whole desktop.
|
See Also