You've already forked lazarus-ccr
fpspreadsheet: Change default value of new WorksheetGrid property AutoCalcRowHeights to false
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5235 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -253,7 +253,7 @@ type
|
|||||||
{@@ Automatically recalculate row heights after loading a file. Gets rid of
|
{@@ Automatically recalculate row heights after loading a file. Gets rid of
|
||||||
possibly incorrect row heights stored by the writing application. But:
|
possibly incorrect row heights stored by the writing application. But:
|
||||||
slow in case of large files. }
|
slow in case of large files. }
|
||||||
property AutoCalcRowHeights: Boolean read FAutoCalcRowHeights write FAutoCalcRowHeights default true;
|
property AutoCalcRowHeights: Boolean read FAutoCalcRowHeights write FAutoCalcRowHeights default false;
|
||||||
{@@ Automatically expand grid dimensions }
|
{@@ Automatically expand grid dimensions }
|
||||||
property AutoExpand: TsAutoExpandModes read FAutoExpand write FAutoExpand;
|
property AutoExpand: TsAutoExpandModes read FAutoExpand write FAutoExpand;
|
||||||
{@@ Displays column and row headers in the fixed col/row style of the grid.
|
{@@ Displays column and row headers in the fixed col/row style of the grid.
|
||||||
@ -1016,7 +1016,7 @@ begin
|
|||||||
FSelPen.JoinStyle := pjsMiter;
|
FSelPen.JoinStyle := pjsMiter;
|
||||||
FSelPen.OnChange := @SelPenChangeHandler;
|
FSelPen.OnChange := @SelPenChangeHandler;
|
||||||
FAutoExpand := [aeData, aeNavigation];
|
FAutoExpand := [aeData, aeNavigation];
|
||||||
FAutoCalcRowHeights := true;
|
FAutoCalcRowHeights := false;
|
||||||
FHyperlinkTimer := TTimer.Create(self);
|
FHyperlinkTimer := TTimer.Create(self);
|
||||||
FHyperlinkTimer.Interval := HYPERLINK_TIMER_INTERVAL;
|
FHyperlinkTimer.Interval := HYPERLINK_TIMER_INTERVAL;
|
||||||
FHyperlinkTimer.OnTimer := @HyperlinkTimerElapsed;
|
FHyperlinkTimer.OnTimer := @HyperlinkTimerElapsed;
|
||||||
|
Reference in New Issue
Block a user