ITabView.TabLineFeed

Syntax

TabLineFeed: Boolean;

Description

The TabLineFeed property determines whether it is possible to navigate table line-by-line.

Comments

The setting is not saved.

To navigate forward, press TAB, to navigate backward - SHIFT+TAB.

Available values:

Example

Executing the example requires a regular report in the repository with connected unit.

Add links to the Report and Tab system assemblies.

Class EventsClass: ReportEvents
Sub OnBeforeExecuteReport(Report: IPrxReport; Var Cancel: Boolean);
Begin
    (Report.Sheets.Item(
0As IPrxTable).TabSheet.View.TabLineFeed := True;
End Sub OnBeforeExecuteReport;
End Class EventsClass;

After executing the example, on opening the regular report it will be available line-by-line navigation.

See also:

ITabView