Freigeben über


TextSelection.Untabify-Methode

Wandelt Tabulatoren in der Auswahl entsprechend der Tabulatoreinstellungen des Benutzers in Leerstellen um.

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

Syntax

'Declaration
Sub Untabify
void Untabify()
void Untabify()
abstract Untabify : unit -> unit
function Untabify()

Beispiele

Sub UnTabifyExample()
   ' 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()
   MsgBox("Converting tabs back to spaces...")
   objSel.Untabify()
End Sub

.NET Framework-Sicherheit

Siehe auch

Referenz

TextSelection Schnittstelle

EnvDTE-Namespace