FootnotePanelOptions: ITabFootnotesPanelOptions;
The FootnotePanelOptions property returns parameters of footnotes panel layout.
Executing the example requires that the repository contains an express report with the REGULAR_REPORT identifier.
Sub UserProc;
Var
MB: IMetabase;
Report: IPrxReport;
FootnotePanel: ITabFootnotesPanelOptions;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("REGULAR_REPORT").Edit As IPrxReport;
FootnotePanel := Report.Options.FootnotePanelOptions;
FootnotePanel.Position := BarDockingEdge.Bottom;
FootnotePanel.PercentHeight := 15;
Report.MetabaseObject.Save;
End Sub UserProc;
On executing the example footnotes panel layout parameters will be changed: the panel will be located below the table and will take 15 percents of table available area.
See also: