Navigation
API > API/Editor > API/Editor/ContentBrowserData
Flags denoting basic state information for an item instance
| Name | EContentBrowserItemFlags |
| Type | enum |
| Header File | /Engine/Source/Editor/ContentBrowserData/Public/ContentBrowserItemData.h |
| Include Path | #include "ContentBrowserItemData.h" |
Syntax
enum EContentBrowserItemFlags
{
None = 0,
Type_Folder = 1<<0,
Type_File = 1<<1,
Type_MASK = Type_Folder | Type_File,
Category_Asset = 1<<2,
Category_Class = 1<<3,
Category_Collection = 1<<4,
Category_Plugin = 1 << 5,
Category_Misc = 1<<6,
Category_MASK = Category_Asset | Category_Class | Category_Collection | Category_Plugin | Category_Misc,
Temporary_Creation = 1<<7,
Temporary_Duplication = 1<<8,
Temporary_MASK = Temporary_Creation | Temporary_Duplication,
Misc_Unsupported = 1 << 9,
}
Values
| Name | Remarks |
|---|---|
| None | No flags |
| Type_Folder | Flags denoting the item type (mutually exclusive) |
| Type_File | |
| Type_MASK | |
| Category_Asset | Flags denoting the item category |
| Category_Class | |
| Category_Collection | |
| Category_Plugin | |
| Category_Misc | |
| Category_MASK | |
| Temporary_Creation | Flags denoting additional information for temporary items (mutually exclusive) |
| Temporary_Duplication | |
| Temporary_MASK | |
| Misc_Unsupported | Flag to mark the item as showing something that is unsupported |