IVsRunningDocTableEvents2.OnAfterAttributeChange Method

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

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

Syntax

'Declaration
Function OnAfterAttributeChange ( _
    docCookie As UInteger, _
    grfAttribs As UInteger _
) As Integer
int OnAfterAttributeChange(
    uint docCookie,
    uint grfAttribs
)
int OnAfterAttributeChange(
    [InAttribute] unsigned int docCookie, 
    [InAttribute] unsigned int grfAttribs
)
abstract OnAfterAttributeChange : 
        docCookie:uint32 * 
        grfAttribs:uint32 -> int
function OnAfterAttributeChange(
    docCookie : uint, 
    grfAttribs : uint
) : int

Parameters

  • docCookie
    Type: UInt32

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

  • grfAttribs
    Type: UInt32

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

Return Value

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

Remarks

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

COM Signature

From vsshell.idl:

HRESULT IVsRunningDocTableEvents2::OnAfterAttributeChange(
   [in] VSCOOKIE docCookie,
   [in] VSRDTATTRIB grfAttribs
);

.NET Framework Security

See Also

Reference

IVsRunningDocTableEvents2 Interface

Microsoft.VisualStudio.Shell.Interop Namespace