Método EditPoint.GetText

Obtém o texto entre o local atual e o local especificado no buffer.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE.dll)

Sintaxe

'Declaração
Function GetText ( _
    PointOrCount As Object _
) As String
string GetText(
    Object PointOrCount
)
String^ GetText(
    [InAttribute] Object^ PointOrCount
)
abstract GetText : 
        PointOrCount:Object -> string 
function GetText(
    PointOrCount : Object
) : String

Parâmetros

Valor de retorno

Tipo: System.String
Uma seqüência de texto localizado entre o local atual e o local especificado no buffer.

Comentários

GetTextRetorna um string que representa o texto entre o ponto de edição e PointOrCount. Se o argumento for um número inteiro, em seguida, GetText retorna um string que representa o número especificado de caracteres após o ponto de edição (é adicionado para uma seqüência newline implícita no final de cada linha).

Se o argumento for negativo, em seguida, GetText retorna o texto antes do ponto de edição.

Exemplos

Sub GetTextExample()
   Dim objTextDoc As TextDocument
   Dim objEditPt As EditPoint, iCtr As Integer
        
   ' 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")
   objEditPt = objTextDoc.StartPoint.CreateEditPoint
        
   ' Insert ten lines of text.
   For iCtr = 1 To 10
      objeditpt.Insert("This is a test." & Chr(13))
   Next iCtr
   objEditPt.StartOfDocument()
   msgbox("The results of GetText: " & Chr(13) & objeditpt.GetText(4))
End Sub

Segurança do .NET Framework

Consulte também

Referência

EditPoint Interface

Namespace EnvDTE