mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 11:06:19 +02:00
parent
0d070eef7f
commit
81b270cf9c
@ -438,6 +438,7 @@ type
|
|||||||
constructor Create(AOwner: TComponent); override;
|
constructor Create(AOwner: TComponent); override;
|
||||||
property FixedChar : Boolean read FFixedChar write FFixedChar;
|
property FixedChar : Boolean read FFixedChar write FFixedChar;
|
||||||
property Transliterate: Boolean read FTransliterate write FTransliterate;
|
property Transliterate: Boolean read FTransliterate write FTransliterate;
|
||||||
|
property Value: String read GetAsString write SetAsString;
|
||||||
published
|
published
|
||||||
property Size default 20;
|
property Size default 20;
|
||||||
end;
|
end;
|
||||||
@ -517,7 +518,7 @@ type
|
|||||||
public
|
public
|
||||||
constructor Create(AOwner: TComponent); override;
|
constructor Create(AOwner: TComponent); override;
|
||||||
Function CheckRange(AValue : largeint) : Boolean;
|
Function CheckRange(AValue : largeint) : Boolean;
|
||||||
property Value: Longint read GetAsLongint write SetAsLongint;
|
property Value: Largeint read GetAsLargeint write SetAsLargeint;
|
||||||
published
|
published
|
||||||
property MaxValue: Largeint read FMaxValue write SetMaxValue default 0;
|
property MaxValue: Largeint read FMaxValue write SetMaxValue default 0;
|
||||||
property MinValue: Largeint read FMinValue write SetMinValue default 0;
|
property MinValue: Largeint read FMinValue write SetMinValue default 0;
|
||||||
@ -712,7 +713,7 @@ type
|
|||||||
public
|
public
|
||||||
constructor Create(AOwner: TComponent); override;
|
constructor Create(AOwner: TComponent); override;
|
||||||
Function CheckRange(AValue : Currency) : Boolean;
|
Function CheckRange(AValue : Currency) : Boolean;
|
||||||
property Value: Longint read GetAsLongint write SetAsLongint;
|
property Value: Currency read GetAscurrency write SetAscurrency;
|
||||||
published
|
published
|
||||||
property Precision: Longint read FPrecision write FPrecision;
|
property Precision: Longint read FPrecision write FPrecision;
|
||||||
property Currency: Boolean read FCurrency write FCurrency;
|
property Currency: Boolean read FCurrency write FCurrency;
|
||||||
|
Loading…
Reference in New Issue
Block a user