SelectionContainer.ActivateObjects Method

Overriding this method enables an object to respond when selected.

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

Syntax

'宣言
Protected Overridable Sub ActivateObjects
'使用

Me.ActivateObjects()
protected virtual void ActivateObjects()
protected:
virtual void ActivateObjects()
protected function ActivateObjects()

Remarks

ActivateObjects allows an object to respond when it is selected.

The base implementation of ActivateObjects has no effect on the VSPackage. It is provided so that derived classes can provide an implementation if necessary. To enable ActivateObjects, 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 ISelectionContainer method SelectObjects(UInt32, [], UInt32) when called with the SELOBJ_ACTIVATE_WINDOW flag.

Notes to Implementers:

Override ActivateObjects when your VSPackage includes selectable objects that need to respond when activated. The method's default implementation is empty.

Permissions

See Also

Reference

SelectionContainer Class

SelectionContainer Members

Microsoft.VisualStudio.Shell Namespace