LEADTOOLS WPF and Silverlight (Leadtools.Windows.Controls assembly)
LEAD Technologies, Inc

PhysicalSize Property (ImageViewer)

Example 





Gets the physical (screen) viewing size. .NET support Silverlight support
Syntax
public virtual Size PhysicalSize {get;}
'Declaration
 
Public Overridable ReadOnly Property PhysicalSize As Size
'Usage
 
Dim instance As ImageViewer
Dim value As Size
 
value = instance.PhysicalSize
public virtual Size PhysicalSize {get;}
 get_PhysicalSize(); 
public:
virtual property Size PhysicalSize {
   Size get();
}

Property Value

The physical (screen) viewing size of this control.
Remarks

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.

Example
Copy CodeCopy Code  
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
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);
}
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);
}
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
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ImageViewer Class
ImageViewer Members

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.