From ae9f19553a4c45a7356e2e5c06c0a4ea59909565 Mon Sep 17 00:00:00 2001 From: wp_xxyyzz Date: Mon, 3 Nov 2014 15:54:50 +0000 Subject: [PATCH] fpspreadsheet: Add readme.txt to the new demo folders, fpsctrls and fpsctrls_no_install git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3702 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- .../examples/fpsctrls/readme.txt | 25 ++++++++++++++++ .../examples/fpsctrls_no_install/readme.txt | 29 +++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 components/fpspreadsheet/examples/fpsctrls/readme.txt create mode 100644 components/fpspreadsheet/examples/fpsctrls_no_install/readme.txt diff --git a/components/fpspreadsheet/examples/fpsctrls/readme.txt b/components/fpspreadsheet/examples/fpsctrls/readme.txt new file mode 100644 index 000000000..be46df256 --- /dev/null +++ b/components/fpspreadsheet/examples/fpsctrls/readme.txt @@ -0,0 +1,25 @@ +FPSpreadsheetControls are a set of visual components which facilitate creation +of a spreadsheet application. + +TsWorkbookSource is the base of package, it links the visual components to a +worksheet instance. + +TsWorkbookTabControl is a TabControl which displays tabs for each worksheet +of the workbook. Changing the active tab selects the corresponding worksheet. + +TsWorksheetGrid is a grid component which displays the contents of a worksheet. +It communicates with the TsWorkbookSource by receiving and sending messages +on the selected cell. + +TsCellEdit is a multi-line edit control (memo) for entering for cell values +and formulas. Pressing ENTER transfers the current text into the worksheet. + +TsCellIndicator is a simple edit used to display the address of the currently +selected cell. Editing the text allows to jump to the cell address. + +TsSpreadsheetInspector is a StringGrid (ValueListEditor, to be precise) which +displays details on the workbook, the selected worksheet, and the selected +cell values and properties. + +Linking these controls to a TsWorkbookSource results in a working spreadsheet +appliation without writing any line of code. diff --git a/components/fpspreadsheet/examples/fpsctrls_no_install/readme.txt b/components/fpspreadsheet/examples/fpsctrls_no_install/readme.txt new file mode 100644 index 000000000..44c68f233 --- /dev/null +++ b/components/fpspreadsheet/examples/fpsctrls_no_install/readme.txt @@ -0,0 +1,29 @@ +FPSpreadsheetControls are a set of visual components which facilitate creation +of a spreadsheet application. + +TsWorkbookSource is the base of package, it links the visual components to a +worksheet instance. + +TsWorkbookTabControl is a TabControl which displays tabs for each worksheet +of the workbook. Changing the active tab selects the corresponding worksheet. + +TsWorksheetGrid is a grid component which displays the contents of a worksheet. +It communicates with the TsWorkbookSource by receiving and sending messages +on the selected cell. + +TsCellEdit is a multi-line edit control (memo) for entering for cell values +and formulas. Pressing ENTER transfers the current text into the worksheet. + +TsCellIndicator is a simple edit used to display the address of the currently +selected cell. Editing the text allows to jump to the cell address. + +TsSpreadsheetInspector is a StringGrid (ValueListEditor, to be precise) which +displays details on the workbook, the selected worksheet, and the selected +cell values and properties. + +Linking these controls to a TsWorkbookSource results in a working spreadsheet +appliation without writing any line of code. + + +The demo application in the folder "fpsctrls_no_install" can be run without +installing the FPSpreadsheet package. \ No newline at end of file