Convert Method
Summary
Converts this LogicalLength structure to the specified unit of measure.
Syntax
Parameters
sourceDpi
Represents the DPI of the source value along the length direction. This value is only used if the source unit of measure is Leadtools.Forms.LogicalUnit.Pixel.
destinationUnit
The unit of measurement of the destination value.
destinationDpi
Represents the DPI of the destination value along the length direction. This value is only used if the source unit of measure is Leadtools.Forms.LogicalUnit.Pixel.
Example
This example creates a new LogicalLength structure in inches then converts it to pixels.
using Leadtools.Forms;
public void LogicalLength_LogicalLength()
{
// create a new logical length that is 1.5 inches
LogicalLength lng = new LogicalLength(1.5f, LogicalUnit.Inch);
// show the length
string s = string.Format("{0}", lng);
MessageBox.Show(s);
// convert the length to pixels
lng.Convert(150, LogicalUnit.Pixel, 150);
// show
s = string.Format("{0}", lng);
MessageBox.Show(s);
}
Imports Leadtools.Forms
Public Sub LogicalLength_LogicalLength()
' create a new logical length that is 1.5 inches
Dim lng As LogicalLength = New LogicalLength(1.5F, LogicalUnit.Inch)
' show the length
Dim s As String = String.Format("{0}", lng)
MessageBox.Show(s)
' convert the length to pixels
lng.Convert(150, LogicalUnit.Pixel, 150)
' show
s = String.Format("{0}", lng)
MessageBox.Show(s)
End Sub