TextSelection.SelectLine Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Wählt die Zeile aus, die den aktiven Punkt enthält.
public:
void SelectLine();
public:
void SelectLine();
void SelectLine();
[System.Runtime.InteropServices.DispId(48)]
public void SelectLine ();
[<System.Runtime.InteropServices.DispId(48)>]
abstract member SelectLine : unit -> unit
Public Sub SelectLine ()
- Attribute
Beispiele
Sub SelectLineExample()
' Before running this example, open a text document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
' Advance to the next Visual Basic function beginning or end by
' searching for "Sub" with white space before and after it.
If objSel.FindPattern(":WhSub:Wh", vsFindOptions.vsFindOptionsRegularExpression) Then
' Select the entire line.
objSel.SelectLine()
End If
End Sub