NumberPrototype.toFixed(Object, Double) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
為顯示指定之小數位數的指定 NumberObject,建立字串表示。
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。
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
參數
- thisob
- Object
這個方法執行位置的物件。
- fractionDigits
- Double
一個介於 0 和 20 之間的數字,表示要顯示的小數位數。 預設值是 0。
傳回
thisob
的字串表示。
- 屬性