Vcl.Themes.TThemedComboBox

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TThemedComboBox = (
tcComboBoxDontCare,
tcComboBoxRoot,
tcDropDownButtonNormal, tcDropDownButtonHot,  tcDropDownButtonPressed,  tcDropDownButtonDisabled,
tcBackground,
tcTransparentBackgroundNormal, tcTransparentBackgroundHot, tcTransparentBackgroundDisabled, tcTransparentBackgroundFocused,
tcBorderNormal, tcBorderHot, tcBorderFocused,  tcBorderDisabled,
tcReadOnlyNormal, tcReadOnlyHot, tcReadOnlyPressed, tcReadOnlyDisabled,
tcDropDownButtonRightNormal, tcDropDownButtonRightHot, tcDropDownButtonRightPressed, tcDropDownButtonRightDisabled,
tcDropDownButtonLeftNormal, tcDropDownButtonLeftHot, tcDropDownButtonLeftPressed, tcDropDownButtonLeftDisabled,
tcCueBannerNormal, tcCueBannerHot, tcCueBannerPressed, tcCueBannerDisabled
);

C++

enum DECLSPEC_DENUM TThemedComboBox : unsigned char { tcComboBoxDontCare, tcComboBoxRoot, tcDropDownButtonNormal, tcDropDownButtonHot, tcDropDownButtonPressed, tcDropDownButtonDisabled, tcBackground, tcTransparentBackgroundNormal, tcTransparentBackgroundHot, tcTransparentBackgroundDisabled, tcTransparentBackgroundFocused, tcBorderNormal, tcBorderHot, tcBorderFocused, tcBorderDisabled, tcReadOnlyNormal, tcReadOnlyHot, tcReadOnlyPressed, tcReadOnlyDisabled, tcDropDownButtonRightNormal, tcDropDownButtonRightHot, tcDropDownButtonRightPressed, tcDropDownButtonRightDisabled, tcDropDownButtonLeftNormal, tcDropDownButtonLeftHot, tcDropDownButtonLeftPressed, tcDropDownButtonLeftDisabled, tcCueBannerNormal, tcCueBannerHot, tcCueBannerPressed, tcCueBannerDisabled };

Properties

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

Description

TThemedComboBox describes the possible themable parts of a combo box.

TThemedComboBox describes the possible themable parts of a combo box. The following table lists the possible values of TThemedComboBox and their meaning.



Value Description

tcComboBoxDontCare

The content that is shared across all the combo box parts.

tcComboBoxRoot

The content that is shared across all the combo box states.

tcDropDownButtonNormal

A combo box drop-down button in its normal state.

tcDropDownButtonHot

A combo box drop-down button in its hovered state.

tcDropDownButtonPressed

A combo box drop-down button in its pressed state.

tcDropDownButtonDisabled

A combo box drop-down button in its disabled state.



See Also