Information.Erl 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回整數,指出最後執行之陳述式的行數。 唯讀。
public:
static int Erl();
public static int Erl ();
static member Erl : unit -> int
Public Function Erl () As Integer
傳回
傳回整數,指出最後執行之陳述式的行數。 唯讀。
範例
這個範例會 Erl
使用 屬性來指出行號。
10: On Error Resume Next
20: Err.Raise(60000)
' Returns 20.
30: MsgBox(Erl())
備註
如果 Visual Basic 沒有遇到行號,則會傳回 0。