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
This commit is contained in:
wp_xxyyzz
2017-03-01 17:29:24 +00:00
parent 90eb7065e9
commit 47c857aa6b

View File

@ -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 }