Interface ITableCell
A single cell in a .NET WPF Table (grid) object.
public interface ITableCell
Properties
ColumnName
The column header name of the cell.
string ColumnName { get; }
Property Value
Height
The height of the cell in pixels.
int Height { get; }
Property Value
Value
The content of the cell.
object Value { get; }
Property Value
Width
The width of the cell in pixels.
int Width { get; }
Property Value
X
The X-coordinate in pixels of the cell relative to the table.
int X { get; }
Property Value
Y
The Y-coordinate in pixels of the cell relative to the table.
int Y { get; }
Property Value
Methods
SetValue(object)
Sets the cell to a new value.
void SetValue(object value)
Parameters
valueobjectThe new value.