diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-02-03 16:50:19 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-02-03 16:50:19 +0200 |
commit | dd179b84fb8eca1658fd95f8b166ddb81e32c6fd (patch) | |
tree | 9871da9aff5dac34fedfef9f81bd9108343e4690 | |
parent | a806a1095b2b45cab61b388762e33d37df8e3839 (diff) | |
download | fpGUI-dd179b84fb8eca1658fd95f8b166ddb81e32c6fd.tar.xz |
Published ReadOnly property for Numeric Edit components too.
-rw-r--r-- | src/gui/fpg_edit.pas | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/fpg_edit.pas b/src/gui/fpg_edit.pas index 019bd3ae..aab137af 100644 --- a/src/gui/fpg_edit.pas +++ b/src/gui/fpg_edit.pas @@ -247,6 +247,7 @@ type property CustomThousandSeparator; property NegativeColor; property ParentShowHint; + property ReadOnly; property ShowHint; property ShowThousand default True; property TabOrder; @@ -289,6 +290,7 @@ type property CustomThousandSeparator; property Value: extended read GetValue write SetValue; property ParentShowHint; + property ReadOnly; property ShowHint; property OnChange; property OnEnter; @@ -322,6 +324,7 @@ type property ShowThousand default True; property Value: Currency read GetValue write SetValue; property ParentShowHint; + property ReadOnly; property ShowHint; property TabOrder; property OnChange; |