LEADTOOLS Forms (Leadtools.Forms assembly)

Width Property (LogicalSize)

Show in webframe
Example 





Gets or sets a value that represents the width for this LogicalSize.
Syntax
public double Width {get; set;}
'Declaration
 
Public Property Width As Double
'Usage
 
Dim instance As LogicalSize
Dim value As Double
 
instance.Width = value
 
value = instance.Width

            

            
public:
property double Width {
   double get();
   void set (    double value);
}

Property Value

Value that indicates the width of the size.
Example
Copy Code  
Imports Leadtools.Forms

Public Sub LogicalSize_ConvertedWidthHeight()
   ' create a new logical size with dimension of 1.5, 2 in inches
   Dim sz As LogicalSize = New LogicalSize(1.5f, 2f, LogicalUnit.Inch)
   Dim s As String
   ' show the size
   s = String.Format("Size is {0}", sz)
   MessageBox.Show(s)

   ' show the width and height components converted to pixels
      s = String.Format("width and height is {0}, {1} Pixels", LogicalUnitConverter.Convert(sz.Width, _
                                                                                            LogicalUnit.Inch, _
                                                                                            150, _
                                                                                            LogicalUnit.Pixel, _
                                                                                            150), _
                        LogicalUnitConverter.ConvertToPixels(sz.Height, LogicalUnit.Inch, 150))
   MessageBox.Show(s)
End Sub
using Leadtools.Forms;

public void LogicalSize_ConvertedWidthHeight()
{
   // create a new logical size with dimension of 1.5, 2 in inches
   LogicalSize sz = new LogicalSize(1.5f, 2f, LogicalUnit.Inch);
   string s;
   // show the size
   s = string.Format("Size is {0}", sz);
   MessageBox.Show(s);

   // show the width and height components converted to pixels
   s = string.Format("width and height is {0}, {1} Pixels", LogicalUnitConverter.Convert(sz.Width, 
                                                                                          LogicalUnit.Inch, 
                                                                                          150, 
                                                                                          LogicalUnit.Pixel, 150), 
                                                                                          LogicalUnitConverter.ConvertToPixels(sz.Height, 
                                                                                          LogicalUnit.Inch, 150));
   MessageBox.Show(s);
}
Requirements

Target Platforms

See Also

Reference

LogicalSize Structure
LogicalSize Members

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.

Leadtools.Forms requires a Forms Module license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features