EnableEdit: Boolean;
The EnableEdit property determines whether data editing is enabled an an express report. True: the mode is enabled, False: the mode is disabled.
Executing this example requires a form with a button on it named Button1, the TabSheetBox components and the UiErAnalyzer component named UiErAnalyzer1 which is used as a data source.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
An: IEaxAnalyzer;
Begin
An := UiErAnalyzer1.ErAnalyzer;
An.EnableEdit := True;
End Sub Button1OnClick;
After executing this example, data editing mode is enabled for the express report table.
See also: