Interface ITableCell
A single cell in .NET Windows Forms table.
Namespace: HP.LFT.SDK.WinForms
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITableCell
Properties
ColumnName
The column header name of this cell.
Declaration
string ColumnName { get; }
Property Value
| Type | Description |
|---|---|
| string |
Height
The height of this cell.
Declaration
int Height { get; }
Property Value
| Type | Description |
|---|---|
| int |
Value
The content of this cell.
Declaration
object Value { get; }
Property Value
| Type | Description |
|---|---|
| object |
Width
The width of this cell.
Declaration
int Width { get; }
Property Value
| Type | Description |
|---|---|
| int |
X
The X-coordinate in pixels of this cell relative to the table.
Declaration
int X { get; }
Property Value
| Type | Description |
|---|---|
| int |
Y
The Y-coordinate in pixels of this cell relative to the table.
Declaration
int Y { get; }
Property Value
| Type | Description |
|---|---|
| int |
Methods
SetValue(object)
Sets the cell to a new value.
Declaration
void SetValue(object value)
Parameters
| Type | Name | Description |
|---|---|---|
| object | value | The new value. |