Sdílet prostřednictvím


EditPoint2.Delete – metoda (Object)

Odstraní zadaný rozsah textu.

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

Syntaxe

'Deklarace
Sub Delete ( _
    PointOrCount As Object _
)
void Delete(
    Object PointOrCount
)
void Delete(
    [InAttribute] Object^ PointOrCount
)
abstract Delete : 
        PointOrCount:Object -> unit 
function Delete(
    PointOrCount : Object
)

Parametry

Implementuje

EditPoint.Delete(Object)

Poznámky

Pokud PointOrCount je TextPoint objektu, Delete odstraní text mezi bodem úpravy a PointOrCount. Pokud PointOrCount je celé číslo, potom Delete odstraní z úpravy textu, přejděte přes zadaný počet znaků následující úpravy přejděte přidání jeden pro každý nový řádek předpokládané sekvence na konci každého řádku.

Pokud PointOrCount je negativní, pak Delete odstraní text před bod upravit.

Příklady

Sub DeleteExample()
   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
        
   ' Change the first letter of the fourth word of the fourth line.
   objEditPt.StartOfDocument()
   objEditPt.LineDown(3)
   objEditPt.WordRight(3)
   objEditPt.CharRight(2)
   objEditPt.Charleft(2)
   objeditpt.Delete(1)
   objEditPt.Insert("p")
End Sub

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

EditPoint2 Rozhraní

Delete – přetížení

EnvDTE80 – obor názvů