DetachCell(Row: Integer; Column: Integer): Boolean;
Row - row.
Column - column.
The DetachCell method unbinds a cell from the slice data. If the unbinding is successfully completed, the method returns True.
The method is outdated, it is recommended to use the DataBinding property.
Sub Detach_Cell;
Var
Report: IPrxReport;
b: Boolean;
Begin
Report := PrxReport.ActiveReport;
b := Report.ActiveSheet.DetachCell(1,1);
End Sub Detach_Cell;
This example is a macro of regular report. After executing the macro the "b" variable contains True if the cell B1 is successfully unbound form the slice data.
See also: