officefileapi-devexpress-dot-unitconversion-e36ebdcc.md
Converts energy measurement from one unit to another.
Namespace : DevExpress.UnitConversion
Assembly : DevExpress.Docs.v25.2.dll
NuGet Package : DevExpress.Document.Processor
public class EnergyUnitsConverter :
BaseUnitsConverter<Energy>
Public Class EnergyUnitsConverter
Inherits BaseUnitsConverter(Of Energy)
The following members return EnergyUnitsConverter objects:
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);
Dim result As Double = Units.Energy.Convert(100.0F, Energy.Btu, Energy.Joule)
Object BaseUnitsConverter<Energy> EnergyUnitsConverter
See Also