TextSelection.SmartFormat 方法
依據目前的語言格式化選取的文字行。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Sub SmartFormat
void SmartFormat()
void SmartFormat()
abstract SmartFormat : unit -> unit
function SmartFormat()
備註
依據智慧型縮排的全域設定,對包含錨定和作用端點所在行的選取文字再縮排或格式化。 SmartFormat 會使選取範圍包含結尾的整行。
範例
Sub SmartFormatExample()
' Before running this example, open a code document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
' Select all code in open document.
objSel.SelectAll()
' Apply smart formatting rules for the language.
objSel.SmartFormat()
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。