←Select platform

PhysicalSize Property

Summary

Gets the physical (screen) viewing size.

Syntax

C#
VB
C++
public virtual Size PhysicalSize { get; } 
  
Public Overridable ReadOnly Property PhysicalSize As Size 
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

C#
VB
Silverlight C#
Silverlight VB
using Leadtools.Help; 
using Leadtools.Windows.Controls; 
 
 
public void ImageBox_PhysicalSize(ImageBox 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 ImageBox_PhysicalSize(ByVal viewer As ImageBox) 
   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 ImageBox_PhysicalSize(ImageBox 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 ImageBox_PhysicalSize(ByVal viewer As ImageBox) 
   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

See Also

Reference

ImageBox Class

ImageBox Members

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Windows.Controls Assembly