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