Resizing Event | ||||||||||||||||
Applies to: Subclasser object, PowerForm
control Occurs when the window subclassed by a Subclasser object or PowerForm control is being resized by the user. Syntax: Private Sub object_Resizing(NewWidth As Long, NewHeight As Long, ByVal Side As AkemiPowerPack.SideConstants) The Resizing event syntax has these parts:
Remarks: The Resizing event is only raised when the window is being manually resized. The Resizing event is not raised if the window is resized by code (eg by calling the form's Move method). Resing events are raised repeatedly, whilst the user drags the window by its title bar. When the user releases the mouse button, a Resized event is raised. The values for NewWidth and NewHeight can be modified in response to the Resizing event, to control the manner in which the window can be resized.
|