Edit: IPrxDataIsland;
The Edit method opens a data area for edit.
To save changed, use the IPrxDataIsland.Save method.
Executing the example 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;
MObj: IMetabaseObject;
DI: IPrxDataIsland;
Begin
MB := MetabaseClass.Active;
MObj := MB.ItemById("REPORT").Edit;
DI := (MObj As IPrxReport).DataIslands.Item(0).Edit;
// Set cell autofit parameters.
DI.AdjustMode := PrxAdjustMode.None;
DI.Save;
// Save report.
MObj.Save;
End Sub UserProc;
After executing the example cell autofit parameters for data area of the REPORT regular report are changed and saved.
See also: