OutputVar := instance.AddByte(value)
Adds MfByte to the current instance of MfParams
value
the MfByte object or var containing Char 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 MfChar class.
Throws MfInvalidCastException if value cannot be cast to MfChar.
RetrunAsObject property for MfByte instance to MfParams instance using this method is always false.
p := new MfParams()
p.AddByte(8) ; Adds MfByte instance to MfParams Instance with a value of 8
MyMethod(p)