EditPoint.LineDown 方法
將編輯點向下移動指定的行數。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Sub LineDown ( _
Count As Integer _
)
void LineDown(
int Count
)
void LineDown(
[InAttribute] int Count
)
abstract LineDown :
Count:int -> unit
function LineDown(
Count : int
)
參數
- Count
型別:System.Int32
選擇項。編輯點要移動的行數。預設值為 1。
備註
如果還沒有移動到指定的行數就到了文件的結尾,則編輯點會停留在文件的結尾。
如果 Count 為負數,則 LineDown 的執行方式會類似於 LineUp。
範例
Sub LineDownExample()
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.StartOfDocument()
objEditPt.LineDown(5)
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。