Class DisplayUnitsConverter
Namn på plats: Aspose.Note Sammanfattning: Aspose.Note.dll (25.4.0)
Klassen innehåller metoderna för att konvertera värden.
public static class DisplayUnitsConverter
{
public static double Convert(double value, DisplayUnits from, DisplayUnits to)
{
switch (from)
{
case DisplayUnits.Millimeters:
return ToCentimeters(value) * ToMeters(100) * ToKilometers(100000);
case DisplayUnits.Centimeters:
return value * ToMeters(100) * ToKilometers(100000);
case DisplayUnits.Meters:
return value * ToKilometers(1000);
default:
throw new ArgumentException("Invalid input unit");
}
double ToMillimeters(double value) => value * 10;
double ToCentimeters(double value) => value / 10;
double ToMeters(double value) => value / 100;
double ToKilometers(double value) => value / 1000;
}
}
Inheritance
object ← DisplayUnitsConverter
Arvsmedlemmar
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Methods
InchToPoint (flödet)
Konverterar inches till poäng.
public static float InchToPoint(float inches)
{
}
In this case, since there are no nested structures or complex conditions in the provided code snippet, the output remains the same as the input. For more complex scenarios, proper indentation will be applied according to standard C# conventions.
Parameters
inches
float
Värdet att konvertera till inches.
Returns
Systemet är singel.
MillimeterToInch (flödet)
Omvandlar millimeter till inches.
public static float MillimeterToInch(float mm)
{
const float CONVERSION_FACTOR = 25.4f;
return mm * CONVERSION_FACTOR;
}
Parameters
mm
float
Värdet att konvertera till millimeter.
Returns
Systemet är singel.
MillimeterToPoint (flödet)
Omvandlar millimeter till punkter.
public static float MillimeterToPoint(float mm)
{
return mm * 25.4f;
}
Parameters
mm
float
Värdet att konvertera till millimeter.
Returns
Systemet är singel.
PixelToPoint (int och float)
Konverterar pixlar till punkter vid den angivna pixelsupplösningen.
public static float PixelToPoint(int pixels, float dpi)
{
}
Parameters
pixels
int
Värdet att konvertera till pixlar.
dpi
float
Skärm resolution .
Returns
Det här är System.Int32.
PointToInch (flödet)
Konverterar poäng till inches.
public static float PointToInch(float points)
{
}
Here's a version with consistent spacing and indentation according to standard C# conventions:
public static float PointToInch(float points)
{
}
Parameters
points
float
Värdet att konvertera till poäng.
Returns
Systemet är singel.
PointToPixel (Float och Float)
Konverterar punkter till pixlar vid den angivna pixelupplösningen.
public static int PointToPixel(float points, float dpi)
{
}
Parameters
points
float
Värdet att konvertera till poäng.
dpi
float
Skärm resolution .
Returns
Det här är System.Int32.