This document is archived and information here might be outdated.  Recommended version.


INumberFormat.ValueToString Method (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (System)  

INumberFormat.ValueToString Method

Converts a numeric value to a formatted string.

[Visual Basic .NET]
Public Function ValueToString ( _
    ByVal Value As Double _
) As String
[C#]
public string ValueToString (
    double Value
);
[C++]
HRESULT ValueToString(
  double Value,
  BSTR* str
);
[C++]

Parameters Value [in] Value is a parameter of type double str [out, retval] str is a parameter of type BSTR

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

The ValueToString method expresses a numeric value as a formatted string. The string is formatted based on the property settings of the number formatting interface that is used. See the particular number formatting interface you're interested in under See Also above for more information.

See Also

INumberFormat Interface | CurrencyFormat Class | IScientificNumberFormat Interface | FractionFormat Class | IPercentageFormat Interface | INumericFormat Interface | IFractionFormat Interface | NumericFormat Class | IAngleFormat Interface | LatLonFormat Class | ICustomNumberFormat Interface | PercentageFormat Class | ILatLonFormat2 Interface | ILatLonFormat Interface | RateFormat Class | IRateFormat Interface | CustomNumberFormat Class | INumberFormat Interface | ScientificFormat Class | AngleFormat Class

.NET Snippets

Decimal Degree Angle Radian Example | Convert Decimal Degree To Radian | Convert Double To Currency | Currency Format Example