Divide()

Namespace ›› System ›› MfFloat ›› Methods ››
Parent Previous Next

Divide()

OutputVar := instance.Divide(value)

Divide(value)

Divides the current instance of MfFloat by the divisor value.

Parameters

value

The Divisor value to divide the current instance Value by.
Can be var containing float or any object that IsNumber.

Returns

If ReturnAsObject is true then returns current instance of MfFloat with an updated Value; Otherwise returns Value as var.

Throws

Throws MfNotSupportedException if Readonly is true.
Throws MfNullReferenceException if called as a static method
Throws MfArgumentNullException if value is null.
Throws MfDivideByZeroException if value is zero.
Throws MfArithmeticException if the operation fails or value is not an instance of MfFloat and can not be converted into float value.

Remarks

The result of the operation will based upon the Format options of the current instance.

Divide by Zero does not throw an exception but return value of NegativeInfinity or PositiveInfinity depending on the the current value sign.
Use IsInfinity(obj) or IsNegativeInfinity(obj) or IsPositiveInfinity(obj) to test for this result.

Example

f := new MfFloat(80.995, true, , "0.4") ; create new MfFloat and set it RetrunAsObject to value to true

fNew := new MfFloat(8.78)
MsgBox % f.Divide(fNew).Value ; displays 9.2249
MsgBox % f.Add(-5.78).Value ; displays 3.4449
MsgBox % f.Add(10.899).Divide(2.87).Value ; 4.9979
MsgBox % f.Add(0).Value ; displays Infinity