Show contents 

Home > Foresight Analytics Platform > Web Application and Desktop Application > Application Development and Functionality Enhancement > Developing in Development Environment > Description of System Assemblies > Tab > Tab Assembly Interfaces > ITabSheet > ITabSheet.ParseCell

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