OutputVar := instance.AddFloat(value)
Add MfFloat to the current MfParams
value
the MfFloat object or var containing Float 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 MfFloat class.
Throws MfInvalidCastException if value cannot be cast to MfFloat.
RetrunAsObject property for MfFloat instance to MfParams instance using this method is always false.
p := new MfParams()
p.AddFloat(12.8)
MyMethod(p)