Sdílet prostřednictvím


TextSelection.Insert – metoda

Vloží daný řetězec aktuálního textového kurzoru.

Obor názvů:  EnvDTE
Sestavení:  EnvDTE (v EnvDTE.dll)

Syntaxe

'Deklarace
Sub Insert ( _
    Text As String, _
    vsInsertFlagsCollapseToEndValue As Integer _
)
void Insert(
    string Text,
    int vsInsertFlagsCollapseToEndValue
)
void Insert(
    [InAttribute] String^ Text, 
    [InAttribute] int vsInsertFlagsCollapseToEndValue
)
abstract Insert : 
        Text:string * 
        vsInsertFlagsCollapseToEndValue:int -> unit
function Insert(
    Text : String, 
    vsInsertFlagsCollapseToEndValue : int
)

Parametry

  • Text
    Typ: String

    Text, který chcete vložit.

  • vsInsertFlagsCollapseToEndValue
    Typ: Int32

    Více vsInsertFlags hodnoty určující, jak vložit text.

Příklady

[Visual Basic]

Sub InsertExample()
   ' Before running this example, open a text document.
   Dim objSel As TextSelection = DTE.ActiveDocument.Selection
   ' Go to the first line in document and select it.
   objSel.GotoLine(1, True)
   ' Insert some new lines and some text.
   objSel.NewLine(3)
   objSel.Insert("A new line", vsInsertFlags.vsInsertFlagsInsertAtStart)
End Sub

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

TextSelection Rozhraní

EnvDTE – obor názvů