Método TextSelection.Untabify

Converte tabulações em espaços na seleção de acordo com as configurações de tabulação do usuário.

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

Sintaxe

'Declaração
Sub Untabify
void Untabify()
void Untabify()
abstract Untabify : unit -> unit 
function Untabify()

Exemplos

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

Segurança do .NET Framework

Consulte também

Referência

TextSelection Interface

Namespace EnvDTE