EditPoint2.EndOfLine Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déplace le point d'édition à la fin de la ligne active dans la mémoire tampon.
public:
void EndOfLine();
public:
void EndOfLine();
void EndOfLine();
[System.Runtime.InteropServices.DispId(103)]
public void EndOfLine ();
[<System.Runtime.InteropServices.DispId(103)>]
abstract member EndOfLine : unit -> unit
Public Sub EndOfLine ()
Implémente
- Attributs
Exemples
Sub EndOfLineExample()
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.EndOfLine()
End Sub