StartTag Event
See Also Example Applies To
Fired when an start tag is found in the XML document.
Syntax
Private Sub object_StartTag (Name , Attributes , StartPostion)
| Part |
Description |
| object |
An object expression that evaluates to an XMLSAXParser object. |
| Name |
Required. A string with the name of the start tag. |
| Attributes |
Required. An XMLAttributes object containing any attributes found in the tag. |
| StartPosition |
Required. A long integer with the start position in bytes of the tag in the XML document. |
|