DecodeEscapeCodes Method
See Also Example Applies To
Returns a string with the HTML escape codes decoded.
Syntax
object.DecodeEscapeCodes (Data)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCUtility object. |
| Data |
Required. The string to be converted. |
Remarks
An example of the code fragment and output needed is below:
Dim X as New XMLRPCUtility ' The Utility object
Print X.DecodeEscapeCodes("<example>")
<example>
|