Show contents 

Express > Express Assembly Interfaces > IEaxAnalyzeCore > IEaxAnalyzeCore.EnableEdit

IEaxAnalyzeCore.EnableEdit

Syntax

EnableEdit: Boolean;

Description

The EnableEdit property determines whether data editing is enabled in express report.

Comments

Available values:

Example

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:

IEaxAnalyzeCore