AddString()

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

AddString()

OutputVar := instance.AddString(value)

AddString(value)

Add MfString to the current MfParams

Parameters

value

the MfString object or var containing string to add to the MfParams

Returns

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

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 argument value is Object but is not a valid instance of MfString class.
Throws MfInvalidCastException if value cannot be cast to MfString.

Remarks

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

Example

p := new MfParams()
p.AddString("Hello World")
MyMethod(p)