共用方式為


EditPoint2.WordRight 方法

將物件向右移動指定的字數。

命名空間:  EnvDTE80
組件:  EnvDTE80 (在 EnvDTE80.dll 中)

語法

'宣告
Sub WordRight ( _
    Count As Integer _
)
void WordRight(
    int Count
)
void WordRight(
    [InAttribute] int Count
)
abstract WordRight : 
        Count:int -> unit
function WordRight(
    Count : int
)

參數

  • Count
    類型:Int32

    選擇項。 編輯點要從緩衝區中目前的位置向右移動幾個文字。

備註

如果還沒有移動到 Count 所指定的文字數就已經到了文件的結尾,則編輯點會停留在文件的結尾。

如果引數是負數,則 WordRight 會以類似於 WordLeft 的方式執行。

範例

Sub WordRightExample()
   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
       
   ' Replace the eighth word on the third line with a new word.
   objEditPt.StartOfDocument()
   objEditPt.LineDown(3)
   objEditPt.WordRight(3)
   objEditPt.Delete(4)
   objEditPt.Insert("raid")
End Sub

.NET Framework 安全性

請參閱

參考

EditPoint2 介面

EnvDTE80 命名空間