XMLSAXParser Object
See Also Example Properties Methods Events
Models an XML SAX Parser.
Class Diagram

Remarks
The XMLSAXParser is a simple SAX parser that is passed a document via the
ParseFile,
ParseString and
ParseWeb methods.
The text in the document is then stored in the read-only
RawDocument property.
The XMLSAXParser contains a large number of events that are fired when the document is parsed.
These events can be used to react to the presence of certain tags in the document.
An XMLSAXParser object can be created the same way other objects are created. For example:
Dim X As New XMLSAXParser
|