C#
VB
C++
Zooms the image to the specified rectangle.
public virtual void ZoomToRectangle(Rect rc)
Public Overridable Sub ZoomToRectangle( _ByVal rc As Rect _)
public:virtual void ZoomToRectangle(Rect rc)
rc
The rectangle to which the image should be zoomed, in client coordinates.
The control will call this method during InteractiveMode.ZoomTo.
This example zooms to a 200x200 square in the center of the image.
using Leadtools.Help;using Leadtools.Windows.Controls;public void BitmapSourceViewer_ZoomToRectangle(ImageViewer viewer){double rectSize = 200;double left = (viewer.PhysicalSize.Width - rectSize) / 2.0;double top = (viewer.PhysicalSize.Height - rectSize) / 2.0;Rect rcZoom = new Rect(left, top, rectSize, rectSize);viewer.ZoomToRectangle(rcZoom);}
Imports Leadtools.Windows.ControlsPublic Sub BitmapSourceViewer_ZoomToRectangle(ByVal viewer As ImageViewer)Dim rectSize As Double = 200Dim left As Double = (viewer.PhysicalSize.Width - rectSize) / 2.0Dim top As Double = (viewer.PhysicalSize.Height - rectSize) / 2.0Dim rcZoom As Rect = New Rect(left, top, rectSize, rectSize)viewer.ZoomToRectangle(rcZoom)End Sub
using Leadtools.Help;using Leadtools.Windows.Controls;public void BitmapSourceViewer_ZoomToRectangle(ImageViewer viewer){double rectSize = 200;double left = (viewer.PhysicalSize.Width - rectSize) / 2.0;double top = (viewer.PhysicalSize.Height - rectSize) / 2.0;Rect rcZoom = new Rect(left, top, rectSize, rectSize);viewer.ZoomToRectangle(rcZoom);}
Imports LeadtoolsImports Leadtools.Windows.ControlsPublic Sub BitmapSourceViewer_ZoomToRectangle(ByVal viewer As ImageViewer)Dim rectSize As Double = 200Dim left As Double = (viewer.PhysicalSize.Width - rectSize) / 2.0Dim top As Double = (viewer.PhysicalSize.Height - rectSize) / 2.0Dim rcZoom As Rect = New Rect(left, top, rectSize, rectSize)viewer.ZoomToRectangle(rcZoom)End Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
