GetValue()

Namespace ›› System ›› MfUInt32 ›› Methods ››
Parent Previous Next

GetValue()

Overrides MfPrimitive.GetValue().

OutputVar := MfUInt32.GetValue(Obj)
OutputVar := MfUInt32.GetValue(Obj, Default)
OutputVar := MfUInt32.GetValue(Obj, Default, AllowAny)

MfUInt32.GetValue(Obj)

Gets the integer number from Object or var containing integer.

Parameters

Obj

The Object or var containing, integer or hex value
Can be any type that matches IsNumber.

Returns

Returns a var containing a integer No less then MinValue and no greater then MaxValue.

Remarks

Static Method
Throws an error if unable to convert Obj to integer.

Throws

Throws MfInvalidOperationException if not called as a static method.
Throws MfArgumentOutOfRangeException if Obj is less then MinValue or Greater then MaxValue.
Throws MfArgumentException if argument Obj is can not be converted to integer value.

MfUInt32.GetValue(Obj, Default)

Gets a integer number from Obj or returns Default value if Obj is unable to be converted to integer. Default must be a value that can be converted to integer or it will be ignored if Obj can not be converted to integer and an error will be thrown.

Parameters

Obj

The Object or var containing, integer or hex value
Can be any type that matches IsIntegerNumber.

Default

The value to return if Obj is Cannot be converted
Can be any type that matches IsIntegerNumber or var of integer.

Returns

Returns a var containing a integer or Default value if Obj is unable to be converted to integer.

Remarks

Static Method
If Default is not a valid integer or MfUInt32 instance then GetValue will throw an error if Obj can not be converted to integer.

If Default can not be converted to a integer then this would method will yield the same results as calling MfUInt32.GetValue(Obj).

Throws

Throws MfInvalidOperationException if not called as a static method.

MfUInt32.GetValue(Obj, Default, AllowAny)

Gets a integer number from Obj or returns Default value if Obj is unable to be converted to integer.

Parameters

Obj

The Object or var containing, integer or hex value
Can be any type that matches IsIntegerNumber.

Default

The value to return if Obj is Cannot be converted
Can be any type that matches IsIntegerNumber or var of integer.

AlowAny

Determines if Default can be a value other then integer. If true Default can be any var, Object or null; Otherwise Default must be a integer value.

Remarks

Static Method.
If AllowAny is true then Default can be any value including var, object or null. However if AllowAny is false then this method will yield the same result as calling MfUInt32.GetValue(Obj, Default).

Throws

Throws MfInvalidOperationException if not called as a static method.
Throws MfArgumentException if AllowAny is not a valid boolean.

General Remarks

If Obj is a float or MfFloat instance then GetValue() will alway round down for positive number and round up for negative numbers. For instance MfInteger.GetValue(2.8) will be 2 and MfInteger.GetValue(-2.8) will be -2.

Throws MfNotSupportedException if incorrect number of parameters are passed in.

Example

Obj := new MfUInt32(233)
val := MfUInt32.GetValue(Obj)
MsgBox %val% ; displays 233

Obj := new MfUInt32(214)
val := MfUInt32.GetValue(Obj)
MsgBox %val% ; displays 214

val := MfUInt32.GetValue(214)
MsgBox %val% ; displays 214

; the following will throw MfArgumentException
; MfUInt32 can be min of 0 and max of 4294967295
val := MfUInt32.GetValue(0x100000001) ; 0x100000001 = 4294967297
MsgBox %val%

; the following will display zero due to integer overflow Default is returned
; MfUInt32 can be min of 0 and max of 4294967295
val := MfUInt32.GetValue(0x100000001, 0) ; 0x100000001 = 4294967297
MsgBox %val% ; displays 0

; the following will throw MfArgumentException
; MfUInt32 can be min of 0 and max of 4294967295
; Default value passed in is not a valid UInt32
val := MfUInt32.GetValue(0x100000001, -3147483656) ; 0x100000001 = 4294967297
MsgBox %val%

; the following will display -1 due to integer overflow Default is returned
; Default value passed in is not a valid UInt32 but will return anyways
; because AllowAny is Set to true
val := MfUInt32.GetValue(4294967297, -1, true)
MsgBox %val% ; displays -1

val := MfUInt32.GetValue(0x00F4)
MsgBox %val% ; displays 244

; the following will throw MfArgumentException
val := MfUInt32.GetValue("abc")
MsgBox %val%

; the Default set to 25 will be returned
val := MfUInt32.GetValue("abc", 25)
MsgBox %val% ; displays 25

VarDefault := new MfUInt32(MfUInt32.MaxValue)
val := MfUInt32.GetValue("abc", VarDefault)
MsgBox %val% ; displays 4294967295

; Default Obj is not a valid UInt32 and Default
; is not a valid UInt32 but AllowAny is true
val := MfUInt32.GetValue("abc", "Undefined", true)
MsgBox %val% ; displays Undefined

; MfNumberStyles.Instance.Number is MfEnum.EnumItem
; and MfEnum.EnumItem is of type IsIntegerNumber
val := MfUInt32.GetValue(MfNumberStyles.Instance.Number)
MsgBox %val% ; displays 111