IVsRunningDocTableEvents3::OnAfterAttributeChange Method (UInt32, UInt32)

 

Called after an attribute of a document in the Running Document Table (RDT) changes.

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

int OnAfterAttributeChange(
	unsigned int docCookie,
	unsigned int grfAttribs
)

Parameters

docCookie
Type: System::UInt32

[in] Abstract value representing the document whose attributes have changed.

grfAttribs
Type: System::UInt32

[in] Flags corresponding to the changed attributes. Values are taken from the __VSRDTATTRIB enumeration.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

The environment calls this method when a document's attributes change Several things may change a document's attributes:

From vsshell.idl:

HRESULT IVsRunningDocTableEvents3::OnAfterAttributeChange(
   [in] VSCOOKIE docCookie,
   [in] VSRDTATTRIB grfAttribs
);
Return to top
Show: