Proprietà TextPoint.Line
Ottiene il numero di riga dell'oggetto.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
ReadOnly Property Line As Integer
Get
int Line { get; }
property int Line {
int get ();
}
abstract Line : int
function get Line () : int
Valore proprietà
Tipo: System.Int32
Valore integer che indica il numero di riga dell'oggetto.
Note
I numeri di riga partono da uno.
Esempi
Sub LineExample()
Dim objTextDoc As TextDocument
Dim objTP As TextPoint, iCtr As Integer
Dim msg As String
' Create a new text file.
DTE.ItemOperations.NewFile("General\Text File")
' Get a handle to the new document and create an EditPoint.
objTextDoc = DTE.ActiveDocument.Object("TextDocument")
objTP = objTextDoc.StartPoint.CreateEditPoint
' Insert ten lines of text.
For iCtr = 1 To 10
objTP.Insert("This is a test." & Chr(13))
Next iCtr
' Display text point location information.
objTP.StartOfDocument()
msg = "DisplayColumn value: " & objTP.DisplayColumn & vbCr
msg = msg & "Line value: " & objTP.Line & vbCr
msg = msg & "LineCharOffset value: " & objTP.LineCharOffset & vbCr
msg = msg & "LineLength value: " & objTP.LineLength & vbCr
MsgBox(msg)
End Sub
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.