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. 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

Report: IPrxReport;

SheetT : IPrxTable;

Result : Boolean;

Begin

SheetT := Report.Sheets.Item(0) As IPrxTable;

Result := SheetT.DataBinding.DetachCell(12,2);

If Result Then

WinApplication.InformationBox("Unbinding complete");

Else

WinApplication.InformationBox("Unbinding failed");

End If;

End Sub UserProc;

After executing the example an appropriate message is displayed depending on the result.

See also:

IPrxTableDataBinding