_LIBCAT_MEMBERINHERITANCE Enumeration

 

Specifies inheritance options for libcat members.

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

[FlagsAttribute]
public enum _LIBCAT_MEMBERINHERITANCE

Member nameDescription
LCMI_IMMEDIATE

Immediate member of class (type).

LCMI_INHERITED

Inherited member of class (type).

LCMI_NOTOVERRIDABLE

Not overridable member of parent class (type).

LCMI_OVERRIDABLE

Overridable (virtual), but not overridden member of parent class (type).

LCMI_OVERRIDDEN

Overridden (virtual or pure virtual) member of parent class (type).

LCMI_OVERRIDEREQUIRED

Override-required (pure virtual), but not overridden, member of parent class (type).

From vsshell80.idl:

enum _LIBCAT_MEMBERINHERITANCE
{
    LCMI_IMMEDIATE          = 0x0001,
    LCMI_OVERRIDABLE        = 0x0002,
    LCMI_OVERRIDEREQUIRED   = 0x0004,
    LCMI_OVERRIDDEN         = 0x0008,
    LCMI_NOTOVERRIDABLE     = 0x0010,
    LCMI_INHERITED          = 0x0020
};
typedef DWORD LIBCAT_MEMBERINHERITANCE;
Return to top
Show: