TextSelection.NewLine 方法
在作用點插入一個分行符號字元。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Sub NewLine ( _
Count As Integer _
)
void NewLine(
int Count
)
void NewLine(
[InAttribute] int Count
)
abstract NewLine :
Count:int -> unit
function NewLine(
Count : int
)
參數
- Count
型別:System.Int32
選擇項。代表要插入的 NewLine 字元數目
備註
如果 Count 為負值,或大於等於 10,000,則 NewLine 會失敗。
範例
Sub NewLineExample()
' Before running this example, open a text document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
' Go to first line in document and select it.
objSel.GotoLine(1, True)
' Insert some new lines and some text.
objSel.NewLine(3)
objSel.Insert("A new line", vsInsertFlags.vsInsertFlagsInsertAtStart)
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。