DocData.OnHierarchyChanged Method

Alerts listeners that the Item ID that is assigned to the document has changed.

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

Syntax

'宣言
Protected Overridable Sub OnHierarchyChanged ( _
    e As EventArgs _
)
'使用
Dim e As EventArgs

Me.OnHierarchyChanged(e)
protected virtual void OnHierarchyChanged(
    EventArgs e
)
protected:
virtual void OnHierarchyChanged(
    EventArgs^ e
)
protected function OnHierarchyChanged(
    e : EventArgs
)

Parameters

Remarks

The Item ID identifies the document in the hierarchy.

This method invokes the IVsHierarchy interface.

Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.

The OnHierarchyChanged method also allows derived classes to handle the event without attaching a delegate. This technique is recommended for handling the event in a derived class.

Notes to Inheritors:

When you override OnHierarchyChanged in a derived class, be sure to call the base class’s OnHierarchyChanged method so that registered delegates receive the event.

Permissions

See Also

Reference

DocData Class

DocData Members

Microsoft.VisualStudio.Modeling.Shell Namespace