From 47c857aa6bfc5e432f69c6e8d8b5bc844ca6dab5 Mon Sep 17 00:00:00 2001 From: wp_xxyyzz Date: Wed, 1 Mar 2017 17:29:24 +0000 Subject: [PATCH] fpspreadsheet: Add worksheet option soHidden to mark a worksheet as hidden. git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5771 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- components/fpspreadsheet/source/common/fpspreadsheet.pas | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components/fpspreadsheet/source/common/fpspreadsheet.pas b/components/fpspreadsheet/source/common/fpspreadsheet.pas index a16e1cba5..fc3276fd9 100644 --- a/components/fpspreadsheet/source/common/fpspreadsheet.pas +++ b/components/fpspreadsheet/source/common/fpspreadsheet.pas @@ -35,8 +35,9 @@ type @param soShowHeaders Show or hide the column or row headers of the spreadsheet @param soHasFrozenPanes If set a number of rows and columns of the spreadsheet is fixed and does not scroll. The number is defined by - LeftPaneWidth and TopPaneHeight. } - TsSheetOption = (soShowGridLines, soShowHeaders, soHasFrozenPanes); + LeftPaneWidth and TopPaneHeight. + @param soHidden Worksheet is hidden. } + TsSheetOption = (soShowGridLines, soShowHeaders, soHasFrozenPanes, soHidden); {@@ Set of user interface options @ see TsSheetOption }