IVsRunningDocTableEvents::OnAfterAttributeChange Method (UInt32, UInt32)
Visual Studio 2015
Called after a change in an attribute of a document in the Running Document Table (RDT).
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
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::Int32If 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 have changed:
Attributes may change when someone calls the NotifyDocumentChanged method in the IVsRunningDocumentTable interface.
Calls to the RegisterAndLockDocument and RenameDocument methods may also change attributes.
Changing the caption on the document's window also calls this method.
From vsshell.idl:
HRESULT IVsRunningDocTableEvents::OnAfterAttributeChange( [in] VSCOOKIE docCookie, [in] VSRDTATTRIB grfAttribs );
Show: