ShellWindow.Resize Method | |
Provide a method that is invoked when the window changes size.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Resize(
oResizeEvent
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public override Usual Resize(
Usual oResizeEvent = default
)
Request Example
View SourceParameters
- oResizeEvent (Optional)
- Type: Usual
The ResizeEvent object that describes the new dimensions of the window canvas area.
Return Value
Type:
UsualRemarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
In the Window:Resize() event handler, calling Window:Size should be used with caution to avoid entering an infinite loop.
If the window has a Toolbar then this method will also make sure that the toolbar is resized as well.
See Also