Sdílet prostřednictvím


Postup: ovládání editoru kódu (Visual Basic)

Visual Studio Editor kódu je textový editor, který bude přizpůsoben jazykových služeb, jako je například Visual Basic, Visual C++, a Visual C#.Text je zapsán do vyrovnávací paměti, který se zobrazí v textu dokumentu.Při použití Visual Studio model objektů automatizace Editor; Chcete-li pracovat s text na pozadí ve vyrovnávací paměti textu nebo v zobrazení.

Jsou čtyři hlavní objekty, které jsou použity k řízení textu v editoru kódu:

Název objektu

Description

TextSelection

Používá se pro práci s textem v zobrazení.TextSelection Objekt představuje kurzor (nebo stříška) nebo vybraného textu v dokumentu viditelné.

TextPoint

Pevná pozice ve vyrovnávací paměti textu.

EditPoint2

Podobně jako TextPoint objektu, ale lze přesunout a můžete upravit text ve vyrovnávací paměti.

VirtualPoint

Podobně jako TextPoint objekt, s tím rozdílem, že obsahuje další funkce k vyhledání pozice textu do virtuálního prostoru.

Jsou dva hlavní objekty, které slouží k manipulaci s editor kódu TextSelection a EditPoint2 objekty.Hlavní rozdíly mezi nimi jsou:

  • TextSelectionpředstavuje výběr viditelný text.Změna polohy změní výběr v zobrazení.EditPoint2 Není vázána k komponentů uživatelské rozhraní (UI), takže změna polohy změní nic v zobrazení.

  • Protože TextSelection představuje výběr viditelná je pouze jedna TextSelection objekt dokumentu.I když můžete mít více TextSelection objekty v dokumentu všechny odkazují na stejný výběr viditelné a všichni mají stejné postavení.Můžete mít tolik EditPoint2 objekty, a může mít různé pozice.

  • Metody TextSelection objektu jsou navrženy tak, aby ku na akce uživatele během metody EditPoint2 nejsou.V důsledku toho některé EditPoint2 metod provádět akce bez jednoho TextSelection metoda ovšem při druhé EditPoint2 metody jsou přesnější ve funkci než TextSelection metody.To je také důvodem, který TextSelection je lepší vlastnosti a metody, než EditPoint2.

Tyto objekty můžete provádět následující akce:

  • Vyberte přidat, odstranit a přesunout text ve vyrovnávací paměti nebo v zobrazení.

  • Přesunete kurzor na místo kolem vyrovnávací paměti nebo zobrazení.

  • Odsazení textu v zobrazení nebo vyrovnávací paměti.

  • Vložení, odebrání a přejděte do záložky.

  • Přidání nebo odstranění textu, včetně prázdných znaků.

  • Najít nebo nahradit text, které jsou založeny na zadaný vzorek.

  • Vytvoření osnovy části kódu a text.

  • Dotazovat se na informace o textu, jako je například umístění textu, horní a dolní části dokumentu, rozsahy vybraný text a tak dále.

Následující příklady ukazují, jak odkazovat a využívat různých členů modelu automatizačních Editor.Další informace o tom, jak spustit ukázkový kód naleznete v tématu Jak: kompilace a spuštění příkladů kódu automatizace objektu modelu.

Další příklady znázorňující používání modelu automatizačních Editor viz příklady na vzorcích automatizace Visual Studio (https://msdn2.microsoft.com/en-us/vstudio/aa718336.aspx) webu.

[!POZNÁMKA]

Dialogová okna a příkazy v nabídkách menu, které vidíte, se mohou lišit od těch popsaných v nápovědě, v závislosti na vašich aktivních nastaveních nebo edici. Tyto postupy byly vyvinuty pomocí obecnému vývojovému nastavení aktivní.Chcete-li změnit vaše nastavení, zvolte Import a ExportNastavení na Nástroje nabídky. Další informace naleznete v tématu Nastavení aplikace Visual Studio.

HTMLWindow3, vsHTMLPanes a vsHTMLViews byly přidány zavedením rozděleného zobrazení v Visual Studio 2008 editoru HTML.Rozdělené zobrazení odděluje kartu a zobrazit okno Upravit prvky jazyka HTML.Přepnutí zobrazení (na návrh nebo zdroj) nemusí nutně znamenat přepnutí na kartu (Split/Design/zdroj).Například po klepnutí na kartu rozdělit přepínání zobrazení návrhu a zdroje se nezmění na kartu, pouze aktivuje nebo deaktivuje částí návrh a zdroj v rozděleném zobrazení.

Příklad

Příklad pro ActivePoint.Tento příklad také ukazuje využití StartOfLine, DisplayColumn, a EndOfLine.Před spuštěním tohoto příkladu, otevřete soubor kódu nebo textu dokumentu v Visual Studio, do ní přidat nějaký text a vyberte část textu.

' Example for TextSelection.ActivePoint.
'
Sub ActivePointExample()
    ' Before running this example, open a text document.
    Dim objSel As TextSelection = DTE.ActiveDocument.Selection
    Dim objActive As VirtualPoint = objSel.ActivePoint
     ' Collapse the selection to the beginning of the line.
    objSel.StartOfLine()
     ' objActive is "live", tied to the position of the actual 
     ' selection, so it will reflect the new position.
    Dim iCol As Long = objActive.DisplayColumn
     ' Move the selection to the end of the line.
        objSel.EndOfLine()

    MsgBox("The length of the insertion point line is " & _
    (objActive.DisplayColumn - iCol) & " display characters.")
End Sub

Příklad pro AnchorPoint.Tento příklad také ukazuje použití DisplayColumn, Line, StartOfDocument a EndOfDocument.Před spuštěním tohoto příkladu, otevřete soubor kódu nebo textu dokumentu v Visual Studio, do ní přidat nějaký text a vyberte část textu.

' Example for TextSelection.AnchorPoint.
'
Sub AnchorPointExample()
    ' Before running this example, open a text document.
    Dim objSel As TextSelection = DTE.ActiveDocument.Selection
    Dim objAnchor As VirtualPoint = objSel.AnchorPoint
    ' objAnchor is "live", tied to the position of the actual 
    ' selection, so it will reflect changes. iCol and iRow are created 
    ' here to save a "snapshot" of the anchor point's position at this 
    ' time.
    Dim iCol As Long = objAnchor.DisplayColumn
    Dim iRow As Long = objAnchor.Line
    ' As the selection is extended, the active point moves but the 
    ' anchor point remains in place.
    objSel.StartOfDocument(True)
    objSel.EndOfDocument(True)

    If (iCol = objAnchor.DisplayColumn And iRow = objAnchor.Line) Then
        MsgBox("The anchor point has remained in place at row " & _
        iRow & ", display column " & iCol)
    End If
End Sub

Příklad pro Insert.This example also illustrates the use of IsEmpty, WordLeft, WordRight, Text, Delete, and MoveToPoint.Před spuštěním tohoto příkladu, otevřete soubor kódu nebo textu dokumentu v Visual Studio a do ní přidat nějaký text.

' Example for TextSelection.Insert.
'
Sub InsertExample()
    ' Before running this example, open a text document.
    Dim objSel As TextSelection = DTE.ActiveDocument.Selection
    If objSel.IsEmpty Then
        ' If there is no text selected, swap the words before and after 
        ' the insertion point. We begin by selecting the word before 
        ' the insertion point.
        objSel.WordLeft(True)
        If Not objSel.IsEmpty Then
            ' We can continue only if the selection was not already at 
            ' the beginning of the document.
            Dim strBefore As String = objSel.Text

            ' The text is saved in strBefore; now delete it and move 
            ' past the following word.
            objSel.Delete()
            objSel.WordRight(True)
            If objSel.Text.StartsWith(" ") Or _
            objSel.Text.StartsWith(Microsoft.VisualBasic. _
            ControlChars.Tab) Then
                ' The previous call to WordRight may have skipped some 
                ' white space instead of an actual word. In that case, 
                 ' we should call it again.
                objSel.WordRight(True)
            End If

            ' Insert the new text at the end of the selection.
            objSel.Insert(strBefore, _
            vsInsertFlags.vsInsertFlagsInsertAtEnd)
        End If
    Else
        ' If some text is selected, replace the following word with the 
        ' selected text.
        Dim strSelected As String = objSel.Text

        objSel.MoveToPoint(objSel.BottomPoint)
        objSel.WordRight(True)
        If objSel.Text.StartsWith(" ") Or _
        objSel.Text.StartsWith(Microsoft.VisualBasic. _
        ControlChars.Tab) Then
            ' The previous call to WordRight may have skipped some 
            ' white space instead of an actual word. In that case, we 
            ' should call it again.
            objSel.WordRight(True)
        End If

        ' Insert the text, overwriting the existing text and leaving 
        ' the selection containing the inserted text.
        objSel.Insert(strSelected, _
        vsInsertFlags.vsInsertFlagsContainNewText)
    End If
End Sub

Příklad pro FindPattern.Tento příklad také ukazuje použití SelectLine.Před spuštěním tohoto příkladu, je nutné otevřít textový dokument nebo soubor s kódem v Visual Studio a do ní přidat nějaký text.

' Example for TextSelection.FindPattern.
'
Sub FindPatternExample()
    ' Before running this example, open a text document.
    Dim objSel As TextSelection = DTE.ActiveDocument.Selection

    ' Advance to the next Visual Basic function beginning or end by 
    ' searching for  "Sub" with white space before and after it.
    If objSel.FindPattern(":WhSub:Wh", _
    vsFindOptions.vsFindOptionsRegularExpression) Then
        ' Select the entire line.
        objSel.SelectLine()
    End If
End Sub

Příklad pro OutlineSection.This example also illustrates the use of StartOfDocument, Line, LineCharOffset, FindPattern, SwapAnchor, MoveToLineAndOffset and LineDown.Před spuštěním tohoto příkladu, otevřete dokument kód v Visual Studio obsahující #if _DEBUG…#endif bloku.

' Example for TextSelection.OutlineSection.
'
Sub OutlineSectionExample()
    ' Before running this example, open a code document
    ' containing a #if _DEBUG…#endif block.
    Dim objSel As TextSelection = DTE.ActiveDocument.Selection

    ' Move to the beginning of the document so we can iterate over the 
    ' whole thing.
    objSel.StartOfDocument()
    While objSel.FindPattern("#if _DEBUG")
        ' If we found the beginning of a debug-only section, save the 
        ' position.
        Dim lStartLine As Long = objSel.TopPoint.Line
        Dim lStartColumn As Long = objSel.TopPoint.LineCharOffset

        ' Look for the end.
        If objSel.FindPattern("#endif") Then
            ' Select the entire section and outline it.
            objSel.SwapAnchor()
            objSel.MoveToLineAndOffset(lStartLine, lStartColumn, True)
            objSel.OutlineSection()
            objSel.LineDown()
        End If
    End While
End Sub

Příklad otevře textový dokument a vytvoří seznam všech dostupných příkazů do dokumentu.

  ' This generates a text document listing all available command names.
Sub CommandNamesCollapseExample()
  Dim Cmd As Command
  Dim Commands As Commands = DTE.Commands 
  Dim PrjItem As ProjectItem
  Dim Doc As Document
  Dim TxtDoc As TextDocument
  DTE.ItemOperations.NewFile ("General\Text File")
  Set Doc = ActiveDocument
  Set TxtDoc = Doc.Object("TextDocument")
  For Each Cmd In Commands
  If (Cmd.Name <> "") Then
    TxtDoc.Selection.Text = Cmd.Name & vbLF
    TxtDoc.Selection.Collapse
  End If
  Next
End Sub

Příklad pro HTMLWindow objektu.This example also illustrates the use of ActiveDocument, ActiveWindow, Window, CurrentTab, CurrentTabObject, ActivePane, StartPoint, CreateEditPoint, FindPattern and InsertFromFile.Před spuštěním tohoto příkladu, otevřete dokument HTML v Visual Studio.

' Example for HTMLWindow object

Sub HTMLWindowExample()
   ' Open an HTML document before running this sample.
   If TypeOf ActiveDocument.ActiveWindow.Object Is HTMLWindow Then
      ' Ask the user for a file to insert into the body of the HTML 
      ' document. This file should be an HTML fragment.
      Dim strFile As String = InputBox("Enter the name of a file to _
      insert at the end of the HTML document:")
      ' Get the HTMLWindow object and determin which tab is currently 
      ' active.
      Dim objHTMLWin As HTMLWindow = ActiveDocument.ActiveWindow.Object
      Dim Tab As vsHTMLTabs = objHTMLWin.CurrentTab

      ' Switch to the "source" tab.
      objHTMLWin.CurrentTab = vsHTMLTabs.vsHTMLTabsSource

      ' Get an EditPoint at the start of the text.
      Dim objTextWin As TextWindow = objHTMLWin.CurrentTabObject
      Dim objEP As EditPoint = _
      objTextWin.ActivePane.StartPoint.CreateEditPoint

      ' Look for the end of the document body.
      If objEP.FindPattern("</body>") Then
         ' Insert the contents of the file.
         objEP.InsertFromFile(strFile)
      End If

      ' Switch back to the original view of the HTML file.
       objHTMLWin.CurrentTab = Tab
   Else
      MsgBox("You must open an HTML document.")
   End If
End Sub

Viz také

Úkoly

Jak: změnit vlastnosti okna

Jak: Vytvoření doplňku

Názorný postup: Vytvoření Průvodce

Koncepty

Automatizační objekt modelu grafu

Další zdroje

Vytváření a řízení prostředí Windows

Vytváření doplňků a průvodců

Automatizace a Reference rozšiřitelnosti