AddBoolean Method
See Also Example Applies To
Adds an XMLRPCMember object containing a name and a boolean to the object.
Syntax
object.AddBoolean (name, value)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCStruct object. |
| name |
Required. A string which is the name of the value to add. |
| value |
Required. Boolean to be appended to the XMLRPCStruct object. |
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCStruct ' The Struct to be added to
X.AddBoolean "Example", True
|