_LIBCAT_HIERARCHYTYPE Enumeration

 

Specifies the hierarchy element type.

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

[FlagsAttribute]
public enum _LIBCAT_HIERARCHYTYPE

Member nameDescription
LCHT_BASESANDINTERFACES

Bases and Interfaces hierarchy element type.

LCHT_DERIVEDTYPES

Derived Types hierarchy element type.

LCHT_FOLDER

Folder hierarchy element type.

LCHT_INFO

Info hierarchy element type.

LCHT_PROJECTREFERENCES

Project References hierarchy element type.

LCHT_UNKNOWN

Unknown (Generic) hierarchy element type.

From vsshell80.idl:

enum _LIBCAT_HIERARCHYTYPE
{
    LCHT_UNKNOWN            = 0x0001,
    LCHT_FOLDER             = 0x0002,
    LCHT_BASESANDINTERFACES = 0x0004,
    LCHT_PROJECTREFERENCES  = 0x0008,
    LCHT_DERIVEDTYPES       = 0x0010,
    LCHT_INFO               = 0x0020
};
typedef DWORD LIBCAT_HIERARCHYTYPE;
Return to top
Show: