ConvertEnumItemType

Namespace ›› System ›› MfParams ›› Properties ››
Parent Previous Next

ConvertEnumItemType

Gets or sets a value indicating whether the MfParams instance uses ParentEnum Type for output.

OutputVar := instance.ConvertEnumItemType
instance.ConvertEnumItemType := Value

Value

Value can be var containing boolean such as true or false.
Value can be MfBool instance.

Get

Gets the value of ConvertEnumItemType as boolean var of true or false.

Set

Sets the Value of the ConvertEnumItemType to true or false.

Remarks

Defalult value is true.
If ConvertEnumItemType is true then ToString() method will output ClassName for the Containing MfEnum instance; Otherwise "MfEnum.EnumItme" is outputted

Example

objParams := new MfParams()
objParams.ConvertEnumItemType := true
objParams.AddInteger(22)
ObjParams.Add(MfNumberStyles.Instance.AllowCurrencySymbol)

MsgBox % ObjParams.ToString() ; displays MfInteger,MfNumberStyles
objParams.ConvertEnumItemType := false

MsgBox % ObjParams.ToString() ; displays MfInteger,MfEnum.EnumItem