AddString Method
See Also Example Applies To
Adds an XMLRPCValue object containing a string to the object.
Syntax
object.AddString (value)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCArray object. |
| value |
Required. String 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 to
X.AddString "Mary had a little lamb"
|