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 | IScientificNumberFormat Interface | PercentageFormat Class | INumberFormat Interface | INumericFormat Interface | FractionFormat Class | IPercentageFormat Interface | ILatLonFormat Interface | ILatLonFormat2 Interface | LatLonFormat Class | ICustomNumberFormat Interface | RateFormat Class | NumericFormat Class | ScientificFormat Class | IRateFormat Interface | AngleFormat Class | IFractionFormat Interface | CurrencyFormat Class | CustomNumberFormat Class | IAngleFormat Interface

.NET Snippets

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