IPrxTableDataBinding.DrillCell

Syntax

DrillCell(Row: Integer; Column: Integer): IPrxDrillCellResult;

Parameters

Row. Row index.

Column. Column index.

Description

The DrillCell method returns information on cell binding to data slice regardless of the sate of multiple selection in fixed dimensions. Indexes of the cell's row and column are passed in the Row and Column parameters respectively.

Example

The following example assumes that there is the Report object with the IPrxReport type.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Report: IPrxReport;
    SheetT: IPrxTable;
    Drill: IPrxDrillCellResult;
Begin
    SheetT:= Report.Sheets.Item(
0As IPrxTable;
    Drill:= SheetT.DataBinding.DrillCell(
12,2);
    
If Drill<>Null Then
        WinApplication.InformationBox(Drill.Slice.Name);
    
End If;
End Sub UserProc;

Executing this example returns a message containing slice name.

See also:

IPrxTableDataBinding