OutpubVar := instance.AddInt64(value)
Add MfInt64 to the current MfParams
value
the MfInt64 object or var containing Integer to add to the MfParams
The value zero-based index within the collection as integer.
RetrunAsObject property for MfInt64 instance to MfParams instance using this method is always false.
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 MfInt64 class.
Throws MfInvalidCastException if value cannot be cast to MfInt64.
p := new MfParams()
p.AddInt64(34)
MyMethod(p)