ITabSheet.ParseRange

Syntax

ParseRange(Address: String): ITabRange;

Parameters

Address — table range address.

Description

The ParseRange method receives a cell range, the address of which is passed as the Address input parameter.

Example

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

Begin

UiTabSheet1.TabSheet.ParseRange("C1:D2").Value := 10;

End Sub Button1OnClick;

As a result each cell of the range "C1:D2" will contain the value 10.

See also:

ITabSheet