Class TrEditNum
Unit
rImprovedComps
Declaration
type TrEditNum = class(TButtonedEdit)
Description
enhanced TButtonedEdit component which provides functionality for editing of integer or float number
Hierarchy
Overview
Methods
Properties
|
property Style: enStyle read FStyle write FStyle default enInteger; |
|
property MinValue: extended read FMinValue write FMinValue; |
|
property MaxValue: extended read FMaxValue write FMaxValue; |
|
property StepValue: extended read FStepValue write FStepValue; |
|
property StepOnly: Boolean read FStepOnly write FStepOnly default false; |
|
property Format: string read FFormat write SetFormat; |
|
property Value: extended read GetValue write SetValue; |
|
property AsInteger: integer read GetAsInteger write SetAsInteger stored false; |
Description
Methods
Properties
|
property Style: enStyle read FStyle write FStyle default enInteger; |
Defines type of edit value - Integer or Float
|
|
property MinValue: extended read FMinValue write FMinValue; |
Minimal value which can be entered
|
|
property MaxValue: extended read FMaxValue write FMaxValue; |
Maximal value which can be entered
|
|
property StepValue: extended read FStepValue write FStepValue; |
if user click to arrow UP or DOWN value is inc/de crement by step value
|
|
property StepOnly: Boolean read FStepOnly write FStepOnly default false; |
Defines whether only values correspond with step value can be entered
|
|
property Format: string read FFormat write SetFormat; |
Defines format of number
|
|
property Value: extended read GetValue write SetValue; |
Get or Set number value
|
|
property AsInteger: integer read GetAsInteger write SetAsInteger stored false; |
Get or Set integre value
|
Generated by PasDoc 0.15.0.
|