ParseCell(Address: String): ITabRange;
Address is a table cell address.
The ParseCell method receives the cell, which address is passed as the Address input parameter.
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: