CustomMark: String;
The CustomMark property determines custom label that is used to determine footnotes.
By default label is not set and for each footnote it is possible to use proper label or automatic numeration.
Executing the example requires a form with the Button1 button, the UiTabSheet component named UiTabSheet1 and any visualizers, for which UiTabSheet1 is set as a data source.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
TabSheet: ITabSheet;
Footnotes: ITabFootnotes;
Footnote: ITabFootnote;
Begin
TabSheet := UiTabSheet1.TabSheet;
Footnotes := TabSheet.Footnotes;
Footnotes.CustomMark := #167; //Symbol code - §
Footnotes.CustomMarkFontName := "Terminal";
Footnote := Footnotes.Add(0, 0);
Footnote.Text := "Description in the first section of documentation";
Footnote := Footnotes.Add(0, 1);
Footnote.Text := "Description in the second section of documentation";
End Sub Button1OnClick;
On clicking the button for the A0 and B0 cells two footmarks will be added. Section character will be used as label for footnotes.
See also: