共用方式為


EditPoint2.WordLeft 方法

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

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

語法

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

參數

  • Count
    類型:Int32

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

備註

WordLeft 將編輯點向左移動指定字數。 如果還沒有移動到 Count 所指定的文字數就已經到了文件的開頭,則編輯點會停留在文件的開頭。

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

範例

Sub WordLeftExample()
   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")
   objEditPt.WordLeft(3)
End Sub

.NET Framework 安全性

請參閱

參考

EditPoint2 介面

EnvDTE80 命名空間