* Store Columns property normally since Lazarus VFI does not have the Delphi issue storing child properties

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3424 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
blikblum
2014-08-04 19:57:50 +00:00
parent ccc593a525
commit 3721362ca0

View File

@ -1331,7 +1331,7 @@ type
published published
property AutoSizeIndex: TColumnIndex read FAutoSizeIndex write SetAutoSizeIndex; property AutoSizeIndex: TColumnIndex read FAutoSizeIndex write SetAutoSizeIndex;
property Background: TColor read FBackground write SetBackground default clBtnFace; property Background: TColor read FBackground write SetBackground default clBtnFace;
property Columns: TVirtualTreeColumns read FColumns write SetColumns stored False; // Stored by the owner tree to support VFI. property Columns: TVirtualTreeColumns read FColumns write SetColumns;
property DefaultHeight: Integer read FDefaultHeight write SetDefaultHeight default 19; property DefaultHeight: Integer read FDefaultHeight write SetDefaultHeight default 19;
property Font: TFont read FFont write SetFont stored IsFontStored; property Font: TFont read FFont write SetFont stored IsFontStored;
property FixedAreaConstraints: TVTFixedAreaConstraints read FFixedAreaConstraints write FFixedAreaConstraints; property FixedAreaConstraints: TVTFixedAreaConstraints read FFixedAreaConstraints write FFixedAreaConstraints;