Método TextSelection.Insert
Insere a cadeia de caracteres especificada no ponto de inserção atual.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE.dll)
Sintaxe
'Declaração
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
)
Parâmetros
- Text
Tipo: System.String
O texto a ser inserido.
- vsInsertFlagsCollapseToEndValue
Tipo: System.Int32
Dentre as vsInsertFlags valores indicando como inserir texto.
Exemplos
[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
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.