Description | Hierarchy | Fields | Methods | Properties |
type TAdEdit = class(TAdComponent)
A simple edit component.
![]() |
constructor Create(AParent:TAdComponent); override; |
![]() |
procedure LoadFromXML(aroot:TAdSimpleXMLElem); override; |
![]() |
function SaveToXML(aroot:TAdSimpleXMLElems): TAdSimpleXMLElem; override; |
![]() |
property SelStart: integer read FSelStart write FSelStart; |
![]() |
property CursorPos: integer read FCursorPos; |
![]() |
property SelCount: integer read GetSelCount; |
![]() |
property Text: string read FText write FText; |
![]() |
property FontName; |
![]() |
property FontColor; |
![]() |
constructor Create(AParent:TAdComponent); override; |
Creates an instance of TAdEdit. |
![]() |
procedure LoadFromXML(aroot:TAdSimpleXMLElem); override; |
Loads the settings from XML. |
![]() |
function SaveToXML(aroot:TAdSimpleXMLElems): TAdSimpleXMLElem; override; |
Stores the settings in XML. |
![]() |
property SelStart: integer read FSelStart write FSelStart; |
The start of the selection. If nothing is selected, "SelStart" will be equal to "CursorPos" |
![]() |
property CursorPos: integer read FCursorPos; |
The position of the edit field. |
![]() |
property SelCount: integer read GetSelCount; |
The count of selected chars. |
![]() |
property Text: string read FText write FText; |
The text, that is written in the edit field. |
![]() |
property FontName; |
The font the text should be written in. |
![]() |
property FontColor; |
The color the text should be written in. |