RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Themes.TThemedEdit Enumeration

TThemedEdit describes the possible themable parts of an edit.

Pascal
TThemedEdit = (
  teEditDontCare,
  teEditRoot,
  teEditTextNormal,
  teEditTextHot,
  teEditTextSelected,
  teEditTextDisabled,
  teEditTextFocused,
  teEditTextReadOnly,
  teEditTextAssist,
  teEditCaret
);
C++
enum TThemedEdit {
  teEditDontCare,
  teEditRoot,
  teEditTextNormal,
  teEditTextHot,
  teEditTextSelected,
  teEditTextDisabled,
  teEditTextFocused,
  teEditTextReadOnly,
  teEditTextAssist,
  teEditCaret
};

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.  

 

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