IVsRunningDocTableEvents3.OnAfterAttributeChange(UInt32, UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called after an attribute of a document in the Running Document Table (RDT) changes.
public:
int OnAfterAttributeChange(System::UInt32 docCookie, System::UInt32 grfAttribs);
public:
int OnAfterAttributeChange(unsigned int docCookie, unsigned int grfAttribs);
int OnAfterAttributeChange(unsigned int docCookie, unsigned int grfAttribs);
public int OnAfterAttributeChange (uint docCookie, uint grfAttribs);
abstract member OnAfterAttributeChange : uint32 * uint32 -> int
Public Function OnAfterAttributeChange (docCookie As UInteger, grfAttribs As UInteger) As Integer
Parameters
- docCookie
- UInt32
[in] Abstract value representing the document whose attributes have changed.
- grfAttribs
- UInt32
[in] Flags corresponding to the changed attributes. Values are taken from the __VSRDTATTRIB enumeration.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
Remarks
The environment calls this method when a document's attributes change Several things may change a document's attributes:
Attributes may change when someone calls the NotifyDocumentChanged method in the IVsRunningDocumentTable interface.
Attributes may also change because of calls to the RegisterAndLockDocument and RenameDocument methods.
Changing the document window's caption also causes a call to this method.
COM Signature
From vsshell.idl:
HRESULT IVsRunningDocTableEvents3::OnAfterAttributeChange(
[in] VSCOOKIE docCookie,
[in] VSRDTATTRIB grfAttribs
);