FindEventsClass.FindDone Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs after a Find-in-files with a results list operation completes.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
virtual event EnvDTE::_dispFindEvents_FindDoneEventHandler ^ FindDone;
public:
virtual event EnvDTE::_dispFindEvents_FindDoneEventHandler ^ FindDone;
public virtual event EnvDTE._dispFindEvents_FindDoneEventHandler FindDone;
member this.FindDone : EnvDTE._dispFindEvents_FindDoneEventHandler
Public Overridable Custom Event FindDone As _dispFindEvents_FindDoneEventHandler Implements FindDone
Event Type
Implements
Examples
Public Sub FindEvents_FindDone(ByVal Result As EnvDTE.vsFindResult, ByVal Cancelled As Boolean) Handles FindEvents.FindDone
MsgBox("test")
End Sub