AddStruct Method
See Also Example Applies To
Adds an XMLRPCValue object containing an XMLRPCStruct to the object.
Syntax
object.AddStruct (value)
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCArray ' The Array to be added to
Dim Y as New XMLRPCStruct ' The Struct to be added
Y.AddInteger "One", 1
Y.AddInteger "Two", 2
Y.AddInteger "Three", 3
X.AddStruct Y
|