|
Footnotes |
Top Previous Next |
|
Footnote looks like number (numbering type is specified in TRVStyle.FootnoteNumbering). Footnote contains subdocument. This subdocument is not displayed in TCustomRichView where the footnote is inserted, but it can be printed. Subdocuments for all footnotes are printed at the bottom of page where this footnote occurs. TRichView cannot print text for footnote on several pages. Class for this item type is TRVFootnoteItemInfo (see for detailed information). Style of this item type: rvsFootnote (-203) Methods of TCustomRichViewThe following viewer-style method adds item of this type to the end of the document: ▪AddItem (create TRVFootnoteItemInfo object, add it using AddItem) The following method returns TRVFootnoteItemInfo object Methods of TCustomRichViewEditThe following editor-style method inserts item of this type in the position of caret: ▪InsertItem (create TRVFootnoteItemInfo object, insert it using InsertItem) The following method returns TRVFootnoteItemInfo object at the position of caret: Saving and LoadingExport to HTML Subdocuments for all footnotes are saved after the main document. Before each subdocument, <a name="footnoteN"></a> is inserted, where N is an index of this footnote (in the list of all numbered sequences, footnotes and endnotes). Footnotes are saved as hyperlinks to this anchor. RTF Footnotes can be exported in RTF. You can set RTFReadProperties.IgnoreNotes to True, and footnotes will not be imported from RTF. Text When copying or saving a selected text, footnotes are not included in text. When saving the whole text, they are saved inside [], for example: This is a text [1 sequence of characters] to show footnotes [2 note of text placed at the bottom of a page]. |