Vcl.Themes.TThemedTreeview
Delphi
TThemedTreeview = (
ttTreeviewDontCare,
ttTreeviewRoot,
ttItemNormal, ttItemHot, ttItemSelected, ttItemDisabled, ttItemSelectedNotFocus, ttItemHotSelected {Windows Vista or later},
ttGlyphClosed, ttGlyphOpened,
ttBranch,
ttHotGlyphClosed, ttHotGlyphOpen
);
C++
enum DECLSPEC_DENUM TThemedTreeview : unsigned char { ttTreeviewDontCare, ttTreeviewRoot, ttItemNormal, ttItemHot, ttItemSelected, ttItemDisabled, ttItemSelectedNotFocus, ttItemHotSelected, ttGlyphClosed, ttGlyphOpened, ttBranch, ttHotGlyphClosed, ttHotGlyphOpen };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | Vcl.Themes.pas Vcl.Themes.hpp |
Vcl.Themes | Vcl.Themes |
Description
TThemedTreeview describes the possible themable parts of a tree view.
TThemedTreeview describes the possible themable parts of a tree view. The following table lists the possible values of TThemedTreeview and their meaning.
Value | Description |
---|---|
ttTreeviewDontCare |
The content that is shared across all the tree view parts. |
ttTreeviewRoot |
The content that is shared across all the tree view states. |
ttItemNormal |
A tree view item in its normal state. |
ttItemHot |
A tree view item in its hovered state. |
ttItemSelected |
A tree view item in its selected state. |
ttItemDisabled |
A tree view item in its disabled state. |
ttItemSelectedNotFocus |
A tree view item in its selected, but not focused state. |
ttGlyphClosed |
The glyph representing a collapsed tree view node. |
ttGlyphOpened |
The glyph representing an expanded tree view node. |
ttBranch |
Tree view branch that links all nodes together. |