SelectionContainer::ActivateObjects Method ()
Overriding this method enables an object to respond when selected.
Assembly: Microsoft.VisualStudio.Shell.14.0 (in Microsoft.VisualStudio.Shell.14.0.dll)
This method allows an object to respond when it is selected.
The base implementation of this methodhas no effect on the VSPackage. It is provided so that derived classes can provide an implementation if necessary. To enable this method, override the base implementation. This protected virtual method is called when the when the selected objects change and need to be ‘activated’. This corresponds to the method M:Microsoft.VisualStudio.Shell.SelectionContainer.Microsoft.VisualStudio.Shell.Interop.ISelectionContainer.SelectObjects(System.UInt32,System.Object[],System.UInt32) when called with the SELOBJ_ACTIVATE_WINDOW flag.
Notes to Implementers:
Override this methodwhen your VSPackage includes selectable objects that need to respond when activated. The method's default implementation is empty.