lazarus-ccr/components/fpspreadsheet/examples/other
2016-03-13 23:01:12 +00:00
..
demo_expression_parser.lpi
demo_expression_parser.pas fpspreadsheet: Improved number format parser 2015-04-18 14:58:38 +00:00
demo_formula_func.lpi
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
demo_recursive_calc.pas fpspreadsheet: Major reconstructor of color management: no more palettes now, use direct rgb colors instead. May break existing code - sorry! Update all demos and unit tests (passed). 2015-05-28 20:08:24 +00:00
demo_sorting.lpi
demo_sorting.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_virtualmode_read.lpi
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
demo_virtualmode_write.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_write_colors.lpi fpspreadsheet: Add demo how to write all Excel8 colors. 2015-05-28 21:54:05 +00:00
demo_write_colors.lpr fpspreadsheet: Add demo how to write all Excel8 colors. 2015-05-28 21:54:05 +00:00
demo_write_formatting.lpi fpspreadsheet: Massive reconstruction: remove formatting attributes of TCell record and collect in TCellFormatList. TCell only has index into this list. Introduce record helpers to keep the old syntax. Reduction of memory consumption per cell by 50%. 2015-01-23 21:54:23 +00:00
demo_write_formatting.pas fpspreadsheet: Massive reconstruction: remove formatting attributes of TCell record and collect in TCellFormatList. TCell only has index into this list. Introduce record helpers to keep the old syntax. Reduction of memory consumption per cell by 50%. 2015-01-23 21:54:23 +00:00
demo_write_formula.lpi
demo_write_formula.pas fpspreadsheet: Reduce support for shared formulas (too many problems...), only reading from xls and xlsx files supported. 2015-03-06 12:12:45 +00:00
demo_write_headerfooter_images.lpi fpspreadsheet: Add writing of header/footer images to ods. 2016-03-13 18:15:40 +00:00
demo_write_headerfooter_images.lpr fpspreadsheet: Finalize image and headerfooter_image demos. Update readme in other demos folder. 2016-03-13 23:01:12 +00:00
demo_write_images.lpi fpspreadsheet: Add writing of header/footer images to ods. 2016-03-13 18:15:40 +00:00
demo_write_images.lpr fpspreadsheet: Finalize image and headerfooter_image demos. Update readme in other demos folder. 2016-03-13 23:01:12 +00:00
financemath.pas
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