lazarus-ccr/components/fpspreadsheet/examples/other
2021-08-26 13:19:10 +00:00
..
cell_formats fpspreadsheet: Add batch scripts to run all console demos automatically. 2021-04-15 12:19:42 +00:00
colors fpspreadsheet: Add batch scripts to run all console demos automatically. 2021-04-15 12:19:42 +00:00
conditional_formatting fpspreadsheet: Fix writing of conditional fonts to xlsx. 2021-05-18 10:24:52 +00:00
expression_parser fpspreadsheet: Add batch scripts to run all console demos automatically. 2021-04-15 12:19:42 +00:00
header_footer_images fpspreadsheet: Add batch scripts to run all console demos automatically. 2021-04-15 12:19:42 +00:00
hyperlinkdemo fpspreadsheet: Move hyperlinkdemo to "others" folder. Make sure that "other" demos write their output in the project directory. 2021-04-15 12:58:58 +00:00
ignore_formulas fpspreadsheet: Fix ignored-formula feature. 2021-04-15 13:40:42 +00:00
images fpspreadsheet: Add batch scripts to run all console demos automatically. 2021-04-15 12:19:42 +00:00
metadata fpspreadsheet: Add richtext demo. 2021-04-15 13:10:15 +00:00
protection fpspreadsheet: Move hyperlinkdemo to "others" folder. Make sure that "other" demos write their output in the project directory. 2021-04-15 12:58:58 +00:00
recursive_calculation fpspreadsheet: Move hyperlinkdemo to "others" folder. Make sure that "other" demos write their output in the project directory. 2021-04-15 12:58:58 +00:00
richtext fpspreadsheet: Add richtext demo. 2021-04-15 13:10:15 +00:00
rpn_formulas fpspreadsheet: Add batch scripts to run all console demos automatically. 2021-04-15 12:19:42 +00:00
searching fpspreadsheet: Clean up searching routines. 2021-08-26 13:19:10 +00:00
sorting fpspreadsheet: Add batch scripts to run all console demos automatically. 2021-04-15 12:19:42 +00:00
user_defined_formulas fpspreadsheet: Move hyperlinkdemo to "others" folder. Make sure that "other" demos write their output in the project directory. 2021-04-15 12:58:58 +00:00
virtual_mode fpspreadsheet: Move hyperlinkdemo to "others" folder. Make sure that "other" demos write their output in the project directory. 2021-04-15 12:58:58 +00:00
other_demos.lpg fpspreadsheet: Add richtext demo. 2021-04-15 13:10:15 +00:00
readme.txt fpspreadsheet: Add richtext demo. 2021-04-15 13:10:15 +00:00
run_all_demos.bat fpspreadsheet: Add richtext demo. 2021-04-15 13:10:15 +00:00

This folder contains various demo applications:

- cell_formats/formatting/demo_write_formatting: shows some simple cell formatting

- colors/demo_write_colors: shows the colors of the Excel8 color palette
  
- conditional_formatting/demo_conditional_formatting: demonstrates how
  a cell range can be formatted depending on the cell content ("conditional
  formatting").

- expression_parser_demo_expression_parser: shows how the formula engine of
  FPSpreadsheet is used.
  
- header_footer_images/demo_write_headerfooter_images: adds images to 
  worksheet headers and footers
  
- images/demo_write_images: shows how to create workbooks/worksheets with
  embedded images.

- protection/demo_protection: demonstrates cell and sheet protection
  supported by FPSpreadsheet.

- recursive_calculation/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.
  
- richtext/demo_richtext_utf8: shows working with rich text formatting in cells

- rpn_formulas/demo_write_formula: shows some rpn formulas

- searching/demo_search:  demonstrates how specific cell content can be 
  searched within a worksheet
  
- sorting/demo_sorting: shows how cell ranges can be sorted within FPSpreadsheet

- user_defined_formulas/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.
  
- virtual_mode/demo_virtualmode_writing: demonstrates how the virtual mode 
  of the workbook can be used to create huge spreadsheet files.
  
- virtual_mode/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.
  
Users of Lazarus 2.1+ can compile all demo projects with a single click by using
the other_demos project group.