IsNegative

Namespace ›› System ›› MfBigInt ›› Properties ››
Parent Previous Next

IsNegative

Gets or sets the if the MfBigInt instance is positive or negative.

OutputVar := instance.IsNegative
instance.IsNegative := Value

Value

Boolean true or false. Can be var or instance of MfBool.

Gets

Gets a boolean var of True or False representing the state of IsNegative.

Sets

Set the state of IsNegative to True or False.

Remarks

If this property is set to true then the MfBigInt instance will be considerer a negative value; Otherwise instance will be considered positive.

Example

bigI := new MfBigInt("165798798456464561378674845676875311568784564")
MsgBox % bigI.Value ; displays 165798798456464561378674845676875311568784564
bigI.IsNegative := true ; change value from Positive to Negative
MsgBox % bigI.Value ; displays -165798798456464561378674845676875311568784564