Erl Property (Err Object) 

Returns an integer indicating the line number of the last executed statement. Read-only.

Public ReadOnly Property Erl() As Integer

Remarks

If Visual Basic encounters no line numbers, it returns 0.

Example

This example uses the Erl property to indicate the line number.

10:     On Error Resume Next
20:     Err.Raise(60000)
' Returns 20.
30:     MsgBox(Erl())

Smart Device Developer Notes

This property is not supported.

Requirements

Namespace: Microsoft.VisualBasic

Module: ErrObject

Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll)

See Also

Reference

Err Object (Visual Basic)
ErrorToString Function