_IMcViewEvents_ResizeEventHandler Delegate
|
|
The viewer client window is being resized.
Namespace:
MediaCy.IQL.Display.Viewer
Assembly:
MediaCy.IQL.Display.Viewer (in MediaCy.IQL.Display.Viewer.dll) Version: 10.0.6912.0
SyntaxPublic Delegate Sub _IMcViewEvents_ResizeEventHandler (
lSizeX As Integer,
lSizeY As Integer,
lFlags As Integer,
<OutAttribute> ByRef bHandled As Boolean
)
Parameters
- lSizeX
- Type: SystemInt32
long : horizontal size of the control, in screen coordinateslong : vertical size of the control, in screen coordinates - lSizeY
- Type: SystemInt32
- lFlags
- Type: SystemInt32
long : the standard system flags from the Window's OnSize event. - bHandled
- Type: SystemBoolean
VARIANT_BOOL * : 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.
RemarksThe viewer will repaint the image if the lFlags parmeter is either SIZE_RESTORED
or SIZE_MAXIMIZED. If the AutoZoomMode property is also not equal to "mazmnone",
then the viewer will also resize the image displayed.
See Also