 |
|
DocTypeTag Event
See Also Example Applies To
Fired when a DocType tag is found in the XML document.
Syntax
Private Sub object_DocTypeTag (RootElement , SystemDocType , DTDData , DTDDataIsURL , DTDName)
| Part |
Description |
| object |
An object expression that evaluates to an XMLSAXParser object. |
| RootElement |
Required. A string with the name of the root element of the XML document. |
| SystemDocType |
Required. A boolean indicating that the DocType is a "SYSTEM" DocType if True or a "PUBLIC" DocType if False. |
| DTDData |
Required. A string with the contents of the DTD if it is embedded in the tag or a URL if it is a reference to another document. |
| DTDDataIsURL |
Required. A boolean indicating that the DTDData parameter is a URL if True or an embedded DTD if it is False. |
| DTDName |
Required. If the SystemDocType parameter is False then this string will contain a reference to a public name of the DTD.
If the SystemDocType parameter is True then this string should be empty. |
|
 |