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 命名空间