SingleTaskIdleManager::IOleComponent::OnAppActivate Method (Int32, UInt32)
Visual Studio 2015
Notifies the component when the host application gains or loses activation.
Assembly: Microsoft.VisualStudio.Shell.14.0 (in Microsoft.VisualStudio.Shell.14.0.dll)
private: virtual void OnAppActivate( int fActive, unsigned int dwOtherThreadID ) sealed = IOleComponent::OnAppActivate
Parameters
- fActive
-
Type:
System::Int32
true if the application is being activated, false if it is losing activation.
- dwOtherThreadID
-
Type:
System::UInt32
The identifier of the thread that owns the window.
If fActive is true, the host application is being activated and dwOtherThreadID is the identifier of the thread owning the window being deactivated. If fActive is false, the host application is being deactivated and dwOtherThreadID is the identifier of the thread owning the window being activated.
This method is not called when both the window being activated and the one being deactivated belong to the host application.
Show: