Control.Resize Method (Typed) | |
Provide a method that is invoked when the control has focus and the control changes size.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Resize(
oResizeEvent AS ResizeEvent
) AS VOID
public virtual void Resize(
ResizeEvent oResizeEvent
)
Request Example
View SourceParameters
- oResizeEvent
- Type: ResizeEvent
The ResizeEvent object that describes the new dimensions of the control.
Remarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
In the Control:Resize() event handler, calling Window:Size should be used with caution to avoid entering an infinite loop.
See Also