PreviewEnableEdit: Boolean;
The PreviewEnableEdit property determines whether the editing of cells located outside the data area is enabled in the view mode.
The property is available for shapes on opening for view.
Available values:
True. Editing is enabled for cells located outside the data area.
False. Default value. Editing is disabled for cells located outside the data area.
Executing the example in repository requires a regular report with the REPORT identifier, which contains data area.
Add links to the Metabase, Report system assemblies.
Sub UserProc;
Var
MB: IMetabase;
Report: IPrxReport;
Options: IPrxReportOptions;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("REPORT").Edit As IPrxReport;
Options := Report.Options;
Options.PreviewEnableEdit := True;
(Report As IMetabaseObject).Save;
End Sub UserProc;
After executing the example cells located outside the data area can be edited in the report opened for view.
See also: