Express > Express Assembly Interfaces > IEaxAnalyzeCore > IEaxAnalyzeCore.EnableEdit
EnableEdit: Boolean;
The EnableEdit property determines whether data editing is enabled in express report.
Available values:
True. Express report data editing mode is enabled.
False. Express report data editing 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 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: