SelectionContainer.ActivateObjects Method

Overriding this method enables an object to respond when selected.

Namespace:  Microsoft.VisualStudio.Shell
Assembly:  Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)

Syntax

'Declaration
Protected Overridable Sub ActivateObjects
protected virtual void ActivateObjects()
protected:
virtual void ActivateObjects()
abstract ActivateObjects : unit -> unit 
override ActivateObjects : unit -> unit 
protected function ActivateObjects()

Remarks

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 SelectObjects(UInt32, array<Object[], 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.

.NET Framework Security

See Also

Reference

SelectionContainer Class

Microsoft.VisualStudio.Shell Namespace