RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
StdCtrls.TEditCharCase Enumeration

TEditCharCase indicates how a control forces the case of characters, if at all.

Pascal
TEditCharCase = (
  ecNormal,
  ecUpperCase,
  ecLowerCase
);
C++
enum TEditCharCase {
  ecNormal,
  ecUpperCase,
  ecLowerCase
};

TEditCharCase specifies what case is given to text typed into a control. It can have one of the following values:

Value 
Meaning 
ecLowerCase  
The text is converted to lowercase.  
ecNormal  
The text appears in mixed case. It is not forced into any case.  
ecUpperCase  
The text is converted to uppercase.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!