AddBool()

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

AddBool()

OutputVar := instance.AddBool(value)

AddBool(value)

Adds MfBool to the current instance of MfParams

Parameters

value

the MfBool object or var containing Char 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 value is Object but is not a valid instance of MfChar class.
Throws MfInvalidCastException if value cannot be cast to MfChar.

Example

p := new MfParams()
p.AddBool(true) ; Adds Mfbool instance to MfParams Instance with a value of true
p.AddBool(false) ; Adds Mfbool instance to MfParams Instance with a value of false
MyMethod(p)