Constructor()

Namespace ›› System ›› MfSetFormatNumberType ›› Methods ››
Parent Previous Next

Constructor()

OutputVar := new MfSetFormatNumberType()
OutputVar := new MfSetFormatNumberType(num)
OutputVar := new MfSetFormatNumberType(instanceEnum)
OutputVar := new MfSetFormatNumberType(enumItem)

Constructor()

Creates a new instance of MfSetFormatNumberType class and set initial value to the value of IntegerFast.

Constructor(num)

Creates a new instance of MfSetFormatNumberType class and sets initial value to value of num.

Parameters

num

An integer value representing an Enumeration Value of MfSetFormatNumberType.

Example

MyEnum := new MfSetFormatNumberType(1) ; Integer

Constructor(instanceEnum)

Creates a new instance of MfSetFormatNumberType class an set the intial value to the value of instanceEnum.

Parameters

instanceEnum

an instance of MfSetFormatNumberType whose Value is used to construct this instance.

Constructor(enumItem)

Creates a new instance of MfSetFormatNumberType class and set its value to the MfEnum.EnumItem instance value.

Parameters

enumItem

MfEnum.EnumItem value must element of this instance

Example

MyEnum := new MfSetFormatNumberType() ; create instance with default value of IntegerFast
MyEnum.Value := MfSetFormatNumberType.Instance.Float.Value ; MyEnum.Value is now 3
MyEnum.AddFlag(MfSetFormatNumberType.Instance.Integer)    ; MyEnum.Value is now 1
MfE := new MfSetFormatNumberType(MyEnum) ; create a new instance and sets it value to the value of MyEnum
Msgbox % MFE.Value ; displays 1

Throws

Throws MfNotSupportedException if this sealed class is extended or inherited.
Throws MfArgumentException if arguments are not correct.

Related

Instance