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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。