NumberPrototype.toFixed(Object, Double) Method

Definition

Creates a string representation of the specified NumberObject that displays the specified number of decimal digits.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static System::String ^ toFixed(System::Object ^ thisob, double fractionDigits);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Number_toFixed)]
public static string toFixed (object thisob, double fractionDigits);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Number_toFixed)>]
static member toFixed : obj * double -> string
Public Shared Function toFixed (thisob As Object, fractionDigits As Double) As String

Parameters

thisob
Object

The object that this method is acting upon.

fractionDigits
Double

A number between 0 and 20 that represents the number of decimal places to display. The default is 0.

Returns

A string representation of thisob.

Attributes

Applies to

See also