- sourceValue
- The value that is going to be converted measured in Leadtools.Forms.LogicalUnit.Pixel.
- sourceDpi
- Represents the DPI of the source value.
- destinationUnit
- The unit of measurement of the destination value.
| Visual Basic (Declaration) | |
|---|---|
Public Shared Function ConvertFromPixels( _ ByVal sourceValue As Double, _ ByVal sourceDpi As Double, _ ByVal destinationUnit As LogicalUnit _ ) As Double | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim sourceValue As Double Dim sourceDpi As Double Dim destinationUnit As LogicalUnit Dim value As Double value = LogicalUnitConverter.ConvertFromPixels(sourceValue, sourceDpi, destinationUnit) | |
| C# | |
|---|---|
public static double ConvertFromPixels( double sourceValue, double sourceDpi, LogicalUnit destinationUnit ) | |
| C++/CLI | |
|---|---|
public: static double ConvertFromPixels( double sourceValue, double sourceDpi, LogicalUnit destinationUnit ) | |
Parameters
- sourceValue
- The value that is going to be converted measured in Leadtools.Forms.LogicalUnit.Pixel.
- sourceDpi
- Represents the DPI of the source value.
- destinationUnit
- The unit of measurement of the destination value.
Convert converts a value measured in pixels to any unit that is specified by %%. The DPI is needed to define the area that is occuppied by one pixel.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code