Condividi tramite


Metodo TextSelection.SmartFormat

Formatta le righe di testo selezionate in base al linguaggio corrente.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

'Dichiarazione
Sub SmartFormat
void SmartFormat()
void SmartFormat()
abstract SmartFormat : unit -> unit 
function SmartFormat()

Note

Causa un nuovo rientro o la formattazione del testo selezionato, incluse le righe contenenti l'ancoraggio e le estremità attive, in base alle impostazioni globali di rientro intelligente. SmartFormat fa in modo che vengano incluse interamente nella selezione le righe poste alle estremità.

Esempi

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

Sicurezza di .NET Framework

Vedere anche

Riferimenti

TextSelection Interfaccia

Spazio dei nomi EnvDTE