EnableEdit: Boolean;
The EnableEdit property determines whether express report data editing is enabled. True - the mode is enabled, False - the mode is disabled.
Executing the example requires a form with a button named Button1 on the form, the TabSheetBox component and the UiErAnalyzer component named UiErAnalyzer1 that 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 the example, data editing mode is enabled for the express report table.
See also: