Java.Math.BigDecimal.MovePointRight Method
Returns a new BigDecimal instance where the decimal point has been moved n places to the right.

Syntax

[Android.Runtime.Register("movePointRight", "(I)Ljava/math/BigDecimal;", "GetMovePointRight_IHandler")]
public virtual BigDecimal MovePointRight (int n)

Parameters

n
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Returns a new BigDecimal instance where the decimal point has been moved n places to the right. If n then the decimal point is moved -n places to the left.

The result is obtained by changing its scale. If the scale of the result becomes negative, then its precision is increased such that the scale is zero.

Note, that movePointRight(0) returns a result which is mathematically equivalent, but which has scale >= 0.

[Android Documentation]

Requirements

Namespace: Java.Math
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1