AddInt64()

Namespace ›› System ›› MfParams ›› Methods ››
Parent Previous Next

AddInt64()

OutpubVar := instance.AddInt64(value)

AddInt64(value)

Add MfInt64 to the current MfParams

Parameters

value

the MfInt64 object or var containing Integer to add to the MfParams

Returns

The value zero-based index within the collection as integer.

Remarks

RetrunAsObject property for MfInt64 instance to MfParams instance using this method is always false.

Throws

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.

Example

p := new MfParams()
p.AddInt64(34)
MyMethod(p)