TextSelection::SmartFormat Method ()
Visual Studio 2015
Formats the selected lines of text based on the current language.
Assembly: EnvDTE (in EnvDTE.dll)
Re-indents or formats the text selection, including the lines the anchor and active ends are on, according to global settings for smart indenting. SmartFormat causes the selection to include the complete lines at the ends.
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
Show: