[Overview][Classes][Procedures and functions][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
The main class for the integer-based spin control
Source position: spin.pp line 151
type TSpinEdit = class(TCustomSpinEdit) end; |
||
public |
||
property AutoSelected: Boolean; |
|
True when the text selection was established automatically. |
published |
||
|
Specifies the placement of the control inside its Parent. |
|
property Alignment: TAlignment; |
||
|
The set of anchor definitions for this control. |
|
property AutoSelect: Boolean; |
|
If True, the edit control will select all its text when it receives focus or when the Enter key is pressed. |
property AutoSize: Boolean; |
|
Allows to automatically adjust the size of the control, according to its content. |
property BorderSpacing: TControlBorderSpacing; |
|
Determines the inner and outer border spacing for this control. |
property Constraints: TSizeConstraints; |
|
The minimal and maximal Width and Height of this control. |
property Enabled: Boolean; |
|
Determines whether the control reacts on mouse or keyboard input. |
property Increment: Integer; |
|
The value by which the value of the control should be increased/decresed when the user clicks one of the arrows or one of the keyboard up/down arrows |
property MaxValue: Integer; |
|
Maximal valueallowed for the spin edit. |
property MinValue: Integer; |
|
Minimal value allowed for the spin edit. |
property OnChange: TNotifyEvent; |
|
The OnChange event is fired when the spin edit value has changed. |
property OnChangeBounds: TNotifyEvent; |
|
Event handler for a change of the Bounds of the control. |
property OnClick: TNotifyEvent; |
|
Notification handler for mouse clicks. |
property OnEditingDone: TNotifyEvent; |
||
property OnEnter: TNotifyEvent; |
|
Handler for control receiving the focus. |
property OnExit: TNotifyEvent; |
|
Handler for control loosing the focus. This is a good place for checking the finished user input. |
|
Handler for keyboard key pressed. |
|
property OnKeyPress: TKeyPressEvent; |
|
Handler for a character entered by the user. |
|
Handler for keyboard key released. |
|
property OnMouseDown: TMouseEvent; |
|
Event handler for mouse button going down. |
property OnMouseEnter: TNotifyEvent; |
||
property OnMouseLeave: TNotifyEvent; |
||
property OnMouseMove: TMouseMoveEvent; |
|
Event handler for mouse movement within the control. |
property OnMouseUp: TMouseEvent; |
|
Event handler for mouse button going up. |
property OnMouseWheel: TMouseWheelEvent; |
||
property OnMouseWheelDown: TMouseWheelUpDownEvent; |
||
property OnMouseWheelUp: TMouseWheelUpDownEvent; |
||
property OnResize: TNotifyEvent; |
|
Notification handler for a resize of the control. |
property OnUTF8KeyPress: TUTF8KeyPressEvent; |
|
Handler for a character entered by the user. |
property ParentColor: Boolean; |
||
property ParentFont: Boolean; |
||
property ParentShowHint: Boolean; |
|
If true, the value of ShowHint for the control will be the same as the one from the Parent. Default is true. |
property PopupMenu: TPopupMenu; |
|
A context-sensitive menu that pops up when the right mouse button is clicked over this control |
property ReadOnly: Boolean; |
|
Prevents the user from changing the text. |
property ShowHint: Boolean; |
|
Enables the Hint display. |
property TabStop: Boolean; |
|
Allows the user to navigate to this control, by pressing the Tab key. |
|
Determines the sequence of controls, reachable when the user presses the Tab key. |
|
property Value: Integer; |
|
The value of spin control. |
property Visible: Boolean; |
|
Allows to show or hide the control, and all of its children. |
|
The main class for the integer-based spin control |
|
| | ||
|
The base class for the integer-based spin control |
|
| | ||
|
The base class for the float-based spin control |
|
| | ||
|
The base class for controls presenting editable text. |
|
| | ||
|
The base class for controls which can contain other (child) controls. |
|
| | ||
|
The base class for visible controls. |
|
| | ||
|
The base class for LCL components associated with widgets. |
|
| | ||
TComponent |
||
? | ||
TObject |
The main class for the integer-based spin edit control. Use TSpinEdit to allow user to pick integer value.
|
The main class for the float-based spin control |
lazarus-ccr.sourceforge.net |