OutputVar := instance.AddBool(value)
Adds MfBool to the current instance of MfParams
value
the MfBool object or var containing Char to add to the MfParams
The value zero-based index within the collection as integer.
Throws MfNullReferenceException if MfParams is not set to an instance.
Throws MfException if there is a error adding value to MfParams
Throws MfArgumentException if value is Object but is not a valid instance of MfChar class.
Throws MfInvalidCastException if value cannot be cast to MfChar.
p := new MfParams()
p.AddBool(true) ; Adds Mfbool instance to MfParams Instance with a value of true
p.AddBool(false) ; Adds Mfbool instance to MfParams Instance with a value of false
MyMethod(p)