Interface ITableCellBase
The base interface for cells in tables, grids, and APO grids in SAP GUI for Windows applications.
Namespace: HP.LFT.SDK.SAP.GUI
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITableCellBase
Properties
IsEditable
Indicates whether the cell is editable.
Declaration
bool IsEditable { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Value
The content of this cell.
Declaration
string Value { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
SetValue(string)
Sets the cell contents to the specified value.
Declaration
void SetValue(string value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | value | The possible values depend on the type of cell. For example, values may be "ON" or "OFF" for a check box, or limited to the values of a combo box. |