←Select platform

Width Property

Summary

Gets or sets a value that represents the width for this LogicalSize.

Syntax

C#
VB
C++
[DataMemberAttribute(Name="width", Order=0, IsRequired=true)] 
public double Width { get; set; } 
  
Public Property Width As Double 
public: 
property double Width { 
   double get(); 
   void set (    double ); 
} 

Property Value

Value that indicates the width of the size.

Example

This example converts the width and height from inch to pixels units.

C#
VB
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); 
} 
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, 2.0F, 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 

Requirements

Target Platforms

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

Leadtools.Forms Assembly