ErrObject.Erl Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an integer indicating the line number of the last executed statement.
public:
property int Erl { int get(); };
public int Erl { get; }
member this.Erl : int
Public ReadOnly Property Erl As Integer
Property Value
The line number of the last executed statement.
Examples
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())
Remarks
If Visual Basic encounters no line numbers, it returns 0.
Applies to
See also
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.