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

i rientri nuovamente o i formati la selezione di testo, incluse le righe l'ancoraggio e le entità finali sono attive, a seconda delle impostazioni globali per rientri intelligenti. 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