Vcl.Themes.TThemedEdit

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TThemedEdit = (
teEditDontCare,
teEditRoot,
teEditTextNormal, teEditTextHot, teEditTextSelected, teEditTextDisabled, teEditTextFocused, teEditTextReadOnly, teEditTextAssist,
teEditCaret,
teBackgroundNormal, teBackgroundHot, teBackgroundDisabled, teBackgroundFocused, teBackgroundReadOnly, teBackgroundAssist,
tePassword,
teBackgroundWithBorderNormal, teBackgroundWithBorderHot, teBackgroundWithBorderDisabled, teBackgroundWithBorderFocused,
teEditBorderNoScrollNormal, teEditBorderNoScrollHot, teEditBorderNoScrollFocused, teEditBorderNoScrollDisabled,
teEditBorderHScrollNormal, teEditBorderHScrollHot, teEditBorderHScrollFocused, teEditBorderHScrollDisabled,
teEditBorderVScrollNormal, teEditBorderVScrollHot, teEditBorderVScrollFocused, teEditBorderVScrollDisabled,
teEditBorderHVScrollNormal, teEditBorderHVScrollHot, teEditBorderHVScrollFocused, teEditBorderHVScrollDisabled
);

C++

enum DECLSPEC_DENUM TThemedEdit : unsigned char { teEditDontCare, teEditRoot, teEditTextNormal, teEditTextHot, teEditTextSelected, teEditTextDisabled, teEditTextFocused, teEditTextReadOnly, teEditTextAssist, teEditCaret, teBackgroundNormal, teBackgroundHot, teBackgroundDisabled, teBackgroundFocused, teBackgroundReadOnly, teBackgroundAssist, tePassword, teBackgroundWithBorderNormal, teBackgroundWithBorderHot, teBackgroundWithBorderDisabled, teBackgroundWithBorderFocused, teEditBorderNoScrollNormal, teEditBorderNoScrollHot, teEditBorderNoScrollFocused, teEditBorderNoScrollDisabled, teEditBorderHScrollNormal, teEditBorderHScrollHot, teEditBorderHScrollFocused, teEditBorderHScrollDisabled, teEditBorderVScrollNormal, teEditBorderVScrollHot,
    teEditBorderVScrollFocused, teEditBorderVScrollDisabled, teEditBorderHVScrollNormal, teEditBorderHVScrollHot, teEditBorderHVScrollFocused, teEditBorderHVScrollDisabled };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.Themes.pas
Vcl.Themes.hpp
Vcl.Themes Vcl.Themes

Description

TThemedEdit describes the possible themable parts of an edit.

TThemedEdit describes the possible themable parts of an edit. The following table lists the possible values of TThemedEdit and their meaning.



Value Description

teEditDontCare

The content that is shared across all edit parts.

teEditRoot

The content that is shared across all edit states.

teEditTextNormal

The text in the edit control in its normal state.

teEditTextHot

The text in the edit control in its hovered state.

teEditTextSelected

The text in the edit control in its selected state.

teEditTextDisabled

The text in the edit control in disabled state.

teEditTextFocused

The text in the edit control in focused state.

teEditTextReadOnly

The text in the edit control in read-only state.

teEditTextAssist

The text in the edit control in its accessible state.

teEditCaret

The caret of an edit control.



See Also