TextSelection::SmartFormat Method ()

 

Formats the selected lines of text based on the current language.

Namespace:   EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

void SmartFormat()

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
Return to top
Show: