ITabFootnotesBox.Source

Syntax

Source: ITabSheetSource;

Description

The Source property determines the data source for a component.

Comments

As a data source you can specify the following components:

Example

Executing the example requires a form with a button named Button1, the TabFootnotesBox component named TabFootnotesBox1 and the UiErAnalyzer component named UiErAnalyzer1. An express report with configured footnotes must be connected to UiErAnalyzer1.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    TabFootnotesBox1.Source := UiErAnalyzer1 As ITabSheetSource;
End Sub Button1OnClick;

On clicking the button the UiErAnalyzer1 is set as a data source for the TabFootnotesBox1 component. After that only footnotes created for the express report will be displayed in TabFootnotesBox1.

See also:

ITabFootnotesBox