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.
Gets the value of ConvertEnumItemType as boolean var of true or false.
Sets the Value of the ConvertEnumItemType to true or false.
Defalult value is true.
If ConvertEnumItemType is true then ToString() method will output ClassName for the Containing MfEnum instance; Otherwise "MfEnum.EnumItme" is outputted
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