Class TCastleIntegerEdit
Unit
Declaration
type TCastleIntegerEdit = class(TCastleEdit)
Description
Descendant of TCastleEdit specialized for editing integer numbers. Use Value instead of Text.
Hierarchy
- TObject
- TPersistent
- TComponent
- TCastleComponent
- TCastleUserInterface
- TCastleUserInterfaceFont
- TCastleEdit
- TCastleIntegerEdit
Overview
Methods
![]() |
constructor Create(AOwner: TComponent); override; |
![]() |
procedure SetFocused(const AValue: Boolean); override; |
![]() |
function PropertySections(const PropertyName: String): TPropertySections; override; |
Properties
![]() |
property Text stored false; |
![]() |
property TextTranslate default false; |
![]() |
property Value: Int64 read GetValue write SetValue stored IsStoredValue nodefault; |
![]() |
property Min: Int64 read FMin write FMin stored IsStoredMin nodefault; |
![]() |
property Max: Int64 read FMax write FMax stored IsStoredMax nodefault; |
Description
Methods
![]() |
constructor Create(AOwner: TComponent); override; |
![]() |
procedure SetFocused(const AValue: Boolean); override; |
![]() |
function PropertySections(const PropertyName: String): TPropertySections; override; |
Properties
![]() |
property Text stored false; |
In case of this descendant, Text is always derived from Value. |
![]() |
property TextTranslate default false; |
![]() |
property Value: Int64 read GetValue write SetValue stored IsStoredValue nodefault; |
Current value, default 0. |
![]() |
property Min: Int64 read FMin write FMin stored IsStoredMin nodefault; |
Minimum value, default 1. Applied only if Min <= Max, which is not the case by default. |
![]() |
property Max: Int64 read FMax write FMax stored IsStoredMax nodefault; |
Minimum value, default 1. Applied only if Min <= Max, which is not the case by default. |
Generated by PasDoc 0.16.0.