AppWindow.Show Method | |
Display a window.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Show(
nShowState
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public override Usual Show(
Usual nShowState = default
)
Request Example
View SourceParameters
- nShowState (Optional)
- Type: Usual
The state in which the window area should be displayed.
Return Value
Type:
UsualNIL
Remarks Constant | Description |
---|
SHOWICONIZED | Shows the window initially as an icon. The user must click on the icon to begin to operate the window |
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 not filling the whole desktop.
You can control the window's size precisely, if you wish, by assigning to its Size and Origin variables.
The user can always re-size the window to their own requirements. 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