TabLineFeed: Boolean;
The TabLineFeed property determines whether it is possible to navigate table line-by-line.
The setting is not saved.
To navigate forward, press TAB, to navigate backward - SHIFT+TAB.
Available values:
True. Navigation to the next line is executed.
False. Navigation to the next line is not executed. Default value.
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(0) As 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: