line Property

MSXML 5.0 SDK

Microsoft XML Core Services (MSXML) 5.0 for Microsoft Office - DOM Reference

line Property

Specifies the line number that contains the error.

[Script]

Script Syntax

lValue = oXMLDOMParseError.line;

Example

The following script example attempts to load an XML document. If it encounters a parse error, it displays the line where the error occurred.

var xmlDoc = new ActiveXObject("Msxml2.DOMDocument.5.0");
xmlDoc.async = false;
xmlDoc.load("books.xml");
if (xmlDoc.parseError.errorCode != 0) {
  alert("A parse error occurred on line " + xmlDoc.parseError.line);
} else {
  alert(xmlDoc.documentElement.xml);
}
[Visual Basic]

Visual Basic Syntax

lValue = oXMLDOMParseError.line

Example

The following Microsoft® Visual Basic® example attempts to load an XML document. If it encounters a parse error, it displays the line where the error occurred.

Dim xmlDoc As New Msxml2.DOMDocument50
xmlDoc.async = False
xmlDoc.Load ("books.xml")
If xmlDoc.parseError.errorCode <> 0 Then
  MsgBox ("A parse error occurred on line " & xmlDoc.parseError.Line)
Else
  MsgBox xmlDoc.documentElement.xml
End If
[C/C++]

C/C++ Syntax

HRESULT get_line(
    long *lineNumber);

Parameters

lineNumber [out, retval]
The line number where the error occurred.

C/C++ Return Values

S_OK
The value returned if successful.
S_FALSE
The value returned if no error occurred.

Remarks

Long integer. The property is read-only.

To view reference information for Visual Basic, C/C++, or Script only, click the Language Filter button Language Filter in the upper-left corner of the page.

See Also

Applies to: IXMLDOMParseError