Class DisplayUnitsConverter

Class DisplayUnitsConverter

اسم الفضاء : Aspose.Note تجميع: Aspose.Note.dll (25.4.0)

يحتوي الفئة على أساليب تحويل القيم.

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

الأعضاء الموروثين

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Methods

InchToPoint (السفينة)

تحويل البنود إلى نقاط.

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

قيمة تحويلها إلى بوصة.

Returns

float

نظام واحد .

ملليمتر توينش (السطح)

تحويل ملليمتر إلى بوصة.

public static float MillimeterToInch(float mm)
    {
        const float CONVERSION_FACTOR = 25.4f;
        return mm * CONVERSION_FACTOR;
    }

Parameters

mm float

قيمة تحويلها إلى ملليمتر.

Returns

float

نظام واحد .

MillimeterToPoint (السفينة)

تحويل ملليمتر إلى نقطة.

public static float MillimeterToPoint(float mm)
   {
      return mm * 25.4f;
   }

Parameters

mm float

قيمة تحويلها إلى ملليمتر.

Returns

float

نظام واحد .

PixelToPoint (int، float)

تحويل البكسل إلى نقطة في دقة بكسل محددة.

public static float PixelToPoint(int pixels, float dpi)
   {
   }

Parameters

pixels int

قيمة تحويلها إلى بكسل.

dpi float

القرار الشاشة

Returns

float

النظام .Int32.

نقطة (السفينة )

تحويل النقاط إلى بوصة.

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

قيمة تحويلها إلى نقاط.

Returns

float

نظام واحد .

PointToPixel (السفينة والطائرات)

تحويل النقاط إلى البكسل في دقة بكسل محددة.

public static int PointToPixel(float points, float dpi)
   {
   }

Parameters

points float

قيمة تحويلها إلى نقاط.

dpi float

القرار الشاشة

Returns

int

النظام .Int32.

 عربي