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

Syntax

[Android.Runtime.Register("movePointLeft", "(I)Ljava/math/BigDecimal;", "GetMovePointLeft_IHandler")]
public virtual BigDecimal MovePointLeft (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 left. If n then the decimal point is moved -n places to the right.

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 movePointLeft(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