ParseCellEx(Address: String; Base: ITabRange): ITabRange;
Address — table cell address.
Base — the table range, in which the required cell is located.
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.
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: