lazarus-ccr/components/fpspreadsheet/examples/other
2016-10-22 20:59:00 +00:00
..
demo_expression_parser.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_expression_parser.pas fpspreadsheet: Add units (mm, cm, in, pts, lines/chars) for column width and row heights. Update all demos (some issues left). 2016-03-18 19:50:40 +00:00
demo_formula_func.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_formula_func.pas fpspreadsheet: Move type declarations from fpspreadsheet.pas to new unit fpstypes.pas. Update all examples. 2015-01-17 22:57:23 +00:00
demo_recursive_calc.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_recursive_calc.pas fpspreadsheet: Add units (mm, cm, in, pts, lines/chars) for column width and row heights. Update all demos (some issues left). 2016-03-18 19:50:40 +00:00
demo_sorting.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_sorting.pas fpspreadsheet: Add units (mm, cm, in, pts, lines/chars) for column width and row heights. Update all demos (some issues left). 2016-03-18 19:50:40 +00:00
demo_virtualmode_read.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_virtualmode_read.lpr fpspreadsheet: Move type declarations from fpspreadsheet.pas to new unit fpstypes.pas. Update all examples. 2015-01-17 22:57:23 +00:00
demo_virtualmode_write.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_virtualmode_write.lpr fpspreadsheet: Modified virtual mode (VirtualColCount, VirtualRowCount and OnWriteCellData were moved from workbook to worksheet). NOTE: THIS BREAKS EXISTING CODE USING VIRTUAL MODE. 2016-07-14 19:43:15 +00:00
demo_write_colors.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_write_colors.lpr fpspreadsheet: Add units (mm, cm, in, pts, lines/chars) for column width and row heights. Update all demos (some issues left). 2016-03-18 19:50:40 +00:00
demo_write_formatting.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_write_formatting.pas fpspreadsheet: Add units (mm, cm, in, pts, lines/chars) for column width and row heights. Update all demos (some issues left). 2016-03-18 19:50:40 +00:00
demo_write_formula.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_write_formula.pas fpspreadsheet: Add units (mm, cm, in, pts, lines/chars) for column width and row heights. Update all demos (some issues left). 2016-03-18 19:50:40 +00:00
demo_write_headerfooter_images.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_write_headerfooter_images.lpr fpspreadsheet: Replace workbook's EmbeddedStream by a more general EmbeddedObj storing image width, height and format as well. 2016-03-15 12:29:58 +00:00
demo_write_images.lpi fpspreadsheet: Fix compilation issues when fpc version is changed: separate package units into different folders, incorporate code of fpsnumformatparser in unit fpsnumformat and code of fpsregfileformats in units fpsreaderwriter. Check and fix all demos. 2016-10-22 20:59:00 +00:00
demo_write_images.lpr fpspreadsheet: Fix xlsx image distortion introduced with new workbook units. 2016-03-18 20:27:17 +00:00
financemath.pas fpspreadsheet: Add interest rate calculation to complete financial functions supported by fpspreadsheet. Extract financial stuff into separate unit "financemath.pas" which will be proposed as a fpc feature request. 2014-07-07 12:04:33 +00:00
readme.txt fpspreadsheet: Finalize image and headerfooter_image demos. Update readme in other demos folder. 2016-03-13 23:01:12 +00:00

This folder contains various demo applications:

- demo_formula_func: shows how a user-provided function can be registered in
  fpspreadsheet for usage in rpn formulas. The example covers some financial
  functions.
  
- demo_recursive_calc: demonstrates recursive calculation of formulas. All
  formulas in this demo depend on the result of the formula in the next cell,
  except for the last cell. When the formula in the first cell is calculated
  recursive calculation of the other cells is requested.
  
- demo_virtualmode_writing: demonstrates how the virtual mode of the workbook
  can be used to create huge spreadsheet files.
  
- demo_virtualmode_reading: demonstrates how the virtual mode of the workbook
  can be used to read huge spreadsheet files. Requires the file written by
  demo_virtualmode_writing.

- demo_write_colors: show the colors of the Excel8 color palette
  
- demo_write_formatting: shows some simple cell formatting

- demo_write_formula: shows some rpn formulas

- demo_write_images: adds images to worksheets

- demo_write_headerfooter_images: adds images to worksheet headers and footers