ITabSheet.ParseCell

Syntax

ParseCell(Address: String): ITabRange;

Parameters

Address is a table cell address.

Description

The ParseCell method receives the cell, which address is passed as the Address input parameter.

Example

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

Begin

UiTabSheet1.TabSheet.ParseCell("A1").Value := 100;

End Sub Button1OnClick;

As a result the A1 cell will contain the 100 value.

See also:

ITabSheet