Automatic processing in stacks of sheetsBrowse the different sheetsBrowse all the sheets contained in stacks in the current page: each_sheet Browse only the (usually the) visible sheets of a stack: each_sheet visible Browse only the sheets that have been selected (in organize mode): each_sheet selection Warning: 'selection' is not yet implemented. Access or modify the header fields of a sheetThe header of a sheet is arbitrarily defined as three fields that allow you to specify when, who, what. Whenvar DateTime dt := sheet_date sheet_date := datetime whovar Str s := sheet_from sheet_from := "Claude" Whatvar Str s := sheet_subject sheet_subject := "Devis n°6253" 'sheet_subject' is the new name replacing 'sheet_title' Create a new sheetnew_sheet ... The position options usable by 'new_sheet' are the same as those usable by 'new_form'. However, the 'stack' option must always be used because you can only create a sheet in a stack. Automatically arrange a sheetMove sheetmove_sheet ... The position options usable by 'move_sheet' are the same as those usable by 'new_form'. However, the 'stack' option must always be used because you can only move a sheet from one stack to another. Explode the contents of the sheetWe move the content as with 'move_sheet', but it is not the sheet that we move but the various elements it contains. The sheet itself, as a container disappears in passing. split_sheet ... The position options used by 'split_sheet' are the same as those used by 'new_form'. Delete sheetdelete_sheet |