EditPoint2.EndOfLine 方法

定义

将编辑点移动到缓冲区中当前行的行尾。

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 ()

实现

属性

示例

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  

适用于