FindEvents 인터페이스
업데이트: 2007년 11월
파일에서 찾기 작업에 대한 이벤트를 제공합니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
<GuidAttribute("C5331ACD-C5D5-11D2-8598-006097C68E81")> _
Public Interface FindEvents _
Implements _FindEvents, _dispFindEvents_Event
Dim instance As FindEvents
[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
public interface FindEvents extends _FindEvents, _dispFindEvents_Event
설명
이 개체를 사용하여 기능을 수행합니다. 개체에 대한 설명을 보려면 FindEventsClass를 참조하십시오. FindEvents 개체는 DTE 개체에서 반환됩니다.
예제
<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