Report > Report Assembly Interfaces > IPrxTableDataBinding > IPrxTableDataBinding.DetachCell
DetachCell(Row: Integer; Column: Integer): Boolean;
Row - row.
Column - column.
The DetachCell method unbinds a cell from the slice data.
The method returns True when completed successfully or False when failed.
The following example assumes that there is the Report object with the IPrxReport type.
Sub UserProc;
Var
MB: IMetabase;
Report: IPrxReport;
SheetT: IPrxTable;
Result: Boolean;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("REPORT").Bind As IPrxReport;
SheetT := Report.Sheets.Item(0) As IPrxTable;
Result := SheetT.DataBinding.DetachCell(12, 2);
If Result Then
WinApplication.InformationBox("Unbounded");
Else
WinApplication.InformationBox("Unbind it not executed");
End If;
End Sub UserProc;
After executing the example an appropriate message is displayed depending on the result.
See also: