TextSelection::Tabify Method ()

 

Converts spaces to tabs in the selection according to your tab settings.

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

void Tabify()

Converts contiguous spaces to tabs within the text selection according to the global setting for a tab's size.

Sub TabifyExample()
   ' Before running this example, open a code document.
   Dim objSel As TextSelection = DTE.ActiveDocument.Selection
   ' Select all code in open document.
   objSel.SelectAll()
   ' Convert spaces in selection to Tab characters.
   objSel.Tabify()
End Sub
Return to top
Show: