Vcl.Samples.DirOutln.TTextCase
Delphi
TTextCase = (tcLowerCase, tcUpperCase, tcAsIs);
C++
enum DECLSPEC_DENUM TTextCase : unsigned char { tcLowerCase, tcUpperCase, tcAsIs };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.Samples.DirOutln.pas Vcl.Samples.DirOutln.hpp |
Vcl.Samples.DirOutln | Vcl.Samples.DirOutln |
Description
Specifies the case of directory labels in a TDirectoryOutline.
Use TTextCase to indicate how the names of the directories in the outline should appear.
TTextCase includes the following values:
| Value | Meaning |
|---|---|
|
tcLowerCase |
Text is in lowercase. |
|
tcUpperCase |
Text is in uppercase. |
|
tcAsIs |
Text retains the original case. |