OutputVar := instance.AddChar(value)
Adds MfChar to the current instance of MfParams
value
the MfChar 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.
RetrunAsObject property for MfChar instance to MfParams instance using this method is always false.
p := new MfParams()
p.AddChar("Hello World") ; only the H of Hello World will be converted to MfChar and added to the collection
p.AddChar("T")
MyMethod(p)