Skip to main content

EnergyUnitsConverter Class

Converts energy measurement from one unit to another.

Namespace: DevExpress.UnitConversion

Assembly: DevExpress.Docs.v23.2.dll

NuGet Package: DevExpress.Document.Processor

Declaration

public class EnergyUnitsConverter :
    BaseUnitsConverter<Energy>

The following members return EnergyUnitsConverter objects:

Remarks

Use the PrefixUnitsConverter<T>.Convert method to perform the conversion.

To convert 100 British Thermal Units to Joules, use the following code:

double result = Units.Energy.Convert(100.0f, Energy.Btu, Energy.Joule);

Inheritance

Object
BaseUnitsConverter<Energy>
EnergyUnitsConverter
See Also