ITabSheet.ParseRangeEx

Syntax

ParseRangeEx(Address: String, Base: ITabRange): ITabRange;

Parameters

Address — table range address.

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

Description

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

Example

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Begin

UiTabSheet1.TabSheet.ParseRangeEx("C1:D2", UiTabSheet1.TabSheet.Cells(0, 0, 3, 3)).Value := 3;

End Sub Button1OnClick;

As a result the cells of the C1:D2 range will contain the value 3.

See also:

ITabSheet