Vcl.StdCtrls.TComboBox.CharCase

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CharCase: TEditCharCase read FCharCase write SetCharCase default 0;

C++

__property CharCase = {default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TComboBox

Description

Determines the case of the text in the combo box.

Vcl.StdCtrls.TComboBox.CharCase inherits from Vcl.StdCtrls.TCustomComboBox.CharCase. All content below this line refers to Vcl.StdCtrls.TCustomComboBox.CharCase.

Determines the case of the text in the combo box.

Use CharCase to force the contents of the combo box into upper or lower case.

When CharCase is set to ecLowerCase or ecUpperCase, the case of characters is converted as the user types into the combo box. Changing the CharCase property changes the actual text, not just its appearance; case information is lost and cannot be recaptured by changing CharCase back to ecNormal.

See Also