共用方式為


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 安全性

請參閱

參考

TextSelection 介面

EnvDTE 命名空間