startCDATA Method
Receives the beginning of a character data (CDATA) section. The contents of the CDATA section are reported through the regular characters
event.
This event is intended only to report the boundary.
Implementation Syntax
Sub startCDATA()
Return Values
If successful, returns void.
If failed, the application may raise an exception.
The startCDATA
event reports only the end boundary of the CDATA section.
A CDATA section provides a way to include characters such as "<", ">", and "&" in an XML document that would normally interfere with processing. A CDATA section uses the following syntax:
<![CDATA[text goes here]]>.
Syntax
HRESULT startCDATA();
Return Values
- S_OK
- The value returned if successful.
- E_FAIL
- The value returned if the parse operation should be aborted.
To view reference information for Visual Basic or C/C++ only, click the Language Filter button in the upper-left corner of the page.
See Also
characters Method | endCDATA Method
Applies to: ISAXLexicalHandler/IVBSAXLexicalHandler Interface