ITabSheet.ParseCellEx

Syntax

ParseCellEx(Address: String; Base: ITabRange): ITabRange;

Parameters

Address — table cell address.

Base — the table range, in which the required cell is located.

Description

The ParseCellEx method receives a cell in the table range, the address of which is passed as an Address input parameter, and the region, in which the required cell is located - as the Base parameter.

Example

UiTabSheet1.TabSheet.ParseCellex("C1",UiTabSheet1.TabSheet.Cells(0,0,3,3)).Value:=99;

As a result the cell "C1" will contain the value "99".

See also:

ITabSheet