NumberPrototype.toPrecision(Object, Object) Method

Definition

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

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

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

Parameters

thisob
Object

The object that this method is acting upon.

precision
Object

A number between 0 and 21 that represents the number of precision digits to display. Precision digits are the digits of the decimal and the exponent combined.

Returns

A string representation of thisob.

Attributes

Applies to

See also