AddArray Method
See Also Example Applies To
Adds an XMLRPCValue object containing an XMLRPCArray to the object.
Syntax
object.AddArray (value)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCArray object. |
| value |
Required. The XMLRPCArray object to be appended to the XMLRPCArray object. |
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCArray ' The Array to be added
Dim Y as New XMLRPCArray ' The Array to be added to
X.AddString "Fred"
X.AddInteger 12345
Y.AddArray X
|