TextPoint.Line (Propiedad)
Obtiene el número de línea del objeto.
Espacio de nombres: EnvDTE
Ensamblado: EnvDTE (en EnvDTE.dll)
Sintaxis
'Declaración
ReadOnly Property Line As Integer
int Line { get; }
property int Line {
int get ();
}
abstract Line : int with get
function get Line () : int
Valor de propiedad
Tipo: Int32
Un valor entero que indica el número de línea del objeto.
Comentarios
Los números de línea empiezan por uno.
Ejemplos
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
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.