Freigeben über


TextSelection.SmartFormat-Methode

Formatiert die markierten Textzeilen entsprechend der aktuellen Sprache.

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

Syntax

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

Hinweise

Wieder-Einzüge oder Stile die Textauswahl, einschließlich die Zeilen der Ankerpunkt und den aktiven Enden sind, entsprechend globalen Einstellungen für den intelligenten Einzug aktiviert. SmartFormat bewirkt, dass die Auswahl die vollständigen Zeilen an den Enden einschließt.

Beispiele

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

.NET Framework-Sicherheit

Siehe auch

Referenz

TextSelection Schnittstelle

EnvDTE-Namespace