BigDecimal.ScaleByPowerOfTen(Int32) Method

Definition

Returns a BigDecimal whose numerical value is equal to (this * 10<sup>n</sup>).

[Android.Runtime.Register("scaleByPowerOfTen", "(I)Ljava/math/BigDecimal;", "GetScaleByPowerOfTen_IHandler")]
public virtual Java.Math.BigDecimal? ScaleByPowerOfTen (int n);
[<Android.Runtime.Register("scaleByPowerOfTen", "(I)Ljava/math/BigDecimal;", "GetScaleByPowerOfTen_IHandler")>]
abstract member ScaleByPowerOfTen : int -> Java.Math.BigDecimal
override this.ScaleByPowerOfTen : int -> Java.Math.BigDecimal

Parameters

n
Int32

the exponent power of ten to scale by

Returns

a BigDecimal whose numerical value is equal to (this * 10<sup>n</sup>)

Attributes

Remarks

Java documentation for java.math.BigDecimal.scaleByPowerOfTen(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to