Show contents 

Report > Report Assembly Interfaces > IPrxTableDataBinding > IPrxTableDataBinding.DetachCell

IPrxTableDataBinding.DetachCell

Syntax

DetachCell(Row: Integer; Column: Integer): Boolean;

Parameters

Row - row.

Column - column.

Description

The DetachCell method unbinds a cell from the slice data.

Comments

The method returns True when completed successfully or False when failed.

Example

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(0As IPrxTable;
    Result := SheetT.DataBinding.DetachCell(122);
    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:

IPrxTableDataBinding