C#
VB
C++
Gets the physical (screen) viewing size.
public virtual Size PhysicalSize { get; }
Public Overridable ReadOnly Property PhysicalSize As Size
public:
virtual property Size PhysicalSize {
Size get();
}
The physical (screen) viewing size of this control.
The physical view size is the pixel size of the control required to view the whole image using current viewing properties. This is calculated by multiplying the image size with the matrix returned from the Transform property.
using Leadtools.Help;
using Leadtools.Windows.Controls;
public void ImageViewer_PhysicalSize(ImageViewer viewer)
{
viewer.AspectRatioCorrection = 2;
// The image height will be multiplied by 2.
string s = string.Format("Physical Size : {0}", viewer.PhysicalSize.ToString());
MessageBox.Show(s);
}
Imports Leadtools.Windows.Controls
Public Sub ImageViewer_PhysicalSize(ByVal viewer As ImageViewer)
viewer.AspectRatioCorrection = 2
' The image height will be multiplied by 2.
Dim s As String = String.Format("Physical Size : {0}", viewer.PhysicalSize.ToString())
MessageBox.Show(s)
End Sub
using Leadtools.Help;
using Leadtools.Windows.Controls;
public void ImageViewer_PhysicalSize(ImageViewer viewer)
{
viewer.AspectRatioCorrection = 2;
// The image height will be multiplied by 2.
string s = string.Format("Physical Size : {0}", viewer.PhysicalSize.ToString());
MessageBox.Show(s);
}
Imports Leadtools
Imports Leadtools.Windows.Controls
Public Sub ImageViewer_PhysicalSize(ByVal viewer As ImageViewer)
viewer.AspectRatioCorrection = 2
' The image height will be multiplied by 2.
Dim s As String = String.Format("Physical Size : {0}", viewer.PhysicalSize.ToString())
MessageBox.Show(s)
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