Interfejs TextEditorEvents
Zawiera zdarzenia zmiany wprowadzone w edytorze tekstu/kod.Użyj tego interfejsu dla funkcji i odnoszą się do TextEditorEventsClass do dokumentacji tego obiektu.
Przestrzeń nazw: EnvDTE
Zestaw: EnvDTE (w EnvDTE.dll)
Składnia
'Deklaracja
<GuidAttribute("23B7A868-6C89-436A-94FA-25D755456A77")> _
Public Interface TextEditorEvents _
Inherits _TextEditorEvents, _dispTextEditorEvents_Event
[GuidAttribute("23B7A868-6C89-436A-94FA-25D755456A77")]
public interface TextEditorEvents : _TextEditorEvents,
_dispTextEditorEvents_Event
[GuidAttribute(L"23B7A868-6C89-436A-94FA-25D755456A77")]
public interface class TextEditorEvents : _TextEditorEvents,
_dispTextEditorEvents_Event
[<GuidAttribute("23B7A868-6C89-436A-94FA-25D755456A77")>]
type TextEditorEvents =
interface
interface _TextEditorEvents
interface _dispTextEditorEvents_Event
end
public interface TextEditorEvents extends _TextEditorEvents, _dispTextEditorEvents_Event
Typ TextEditorEvents uwidacznia następujące elementy członkowskie.
Metody
Nazwa | Opis | |
---|---|---|
add_LineChanged | Infrastruktura. Microsoft tylko do użytku wewnętrznego. (Odziedziczone z _dispTextEditorEvents_Event). | |
remove_LineChanged | Infrastruktura. Microsoft tylko do użytku wewnętrznego. (Odziedziczone z _dispTextEditorEvents_Event). |
Początek
Zdarzenia
Nazwa | Opis | |
---|---|---|
LineChanged | Infrastruktura. Microsoft tylko do użytku wewnętrznego. (Odziedziczone z _dispTextEditorEvents_Event). |
Początek
Uwagi
TextEditorEvents Obiekt jest zwracany przez DTE.Events.
Przykłady
<System.ContextStaticAttribute()> Public WithEvents TextEditorEvents As EnvDTE.TextEditorEvents
Public Sub TextEditorEvents_LineChanged(ByVal StartPoint As EnvDTE.TextPoint, ByVal EndPoint As EnvDTE.TextPoint, ByVal Hint As Integer) Handles TextEditorEvents.LineChanged
MsgBox("test")
End Sub