FindEvents Interface
Provides events for Find-in-Files operations.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
<GuidAttribute("C5331ACD-C5D5-11D2-8598-006097C68E81")> _
Public Interface FindEvents _
Inherits _FindEvents, _dispFindEvents_Event
[GuidAttribute("C5331ACD-C5D5-11D2-8598-006097C68E81")]
public interface FindEvents : _FindEvents,
_dispFindEvents_Event
[GuidAttribute(L"C5331ACD-C5D5-11D2-8598-006097C68E81")]
public interface class FindEvents : _FindEvents,
_dispFindEvents_Event
[<GuidAttribute("C5331ACD-C5D5-11D2-8598-006097C68E81")>]
type FindEvents =
interface
interface _FindEvents
interface _dispFindEvents_Event
end
public interface FindEvents extends _FindEvents, _dispFindEvents_Event
The FindEvents type exposes the following members.
Methods
Name | Description | |
---|---|---|
add_FindDone | Infrastructure. Microsoft Internal Use Only. (Inherited from _dispFindEvents_Event.) | |
remove_FindDone | Infrastructure. Microsoft Internal Use Only. (Inherited from _dispFindEvents_Event.) |
Top
Events
Name | Description | |
---|---|---|
FindDone | Infrastructure. Microsoft Internal Use Only. (Inherited from _dispFindEvents_Event.) |
Top
Remarks
Use this object for functionality and refer to FindEventsClass for this object’s documentation. The FindEvents object is returned by the DTE object.
Examples
<System.ContextStaticAttribute()> Public WithEvents FindEvents As EnvDTE.FindEvents
Public Sub FindEvents_FindDone(ByVal Result As EnvDTE.vsFindResult, ByVal Cancelled As Boolean) Handles FindEvents.FindDone
MsgBox("test")
End Sub