Description
The viewer client window is being resized.
Syntax
Private Sub object_Resize(Window, lSizeX, lSizeY, lFlags, bHandled)
The Resize Event syntax has these parts:
|
| object | A McWindows object. | | Window | A McWindow object. | | lSizeX | A Long value. horizontal size of the control, in screen coordinates lSizeX - vertical size of the control, in screen coordinates
| | lSizeY | A Long value. | | lFlags | A Long value. the standard system flags from the Window's OnSize event.
| | bHandled | A Boolean value. Setting this parameter to true aborts the propagation of this event to other clients. The implication is that the client code that set this parameter has handled the event and no other clients should.
|
Remarks
The viewer will repaint the image if the lFlags parameter is either SIZE_RESTORED or SIZE_MAXIMIZED. If the AutoZoomMode property is also not equal to none, then the viewer will also resize the image displayed.
|