ITableCell Interface
A single cell in a .NET WPF Table (grid) object.

C# Syntax

public interface ITableCell 
Public Properties
 NameDescription
PropertyColumnNameThe column header name of the cell.  
PropertyHeightThe height of the cell in pixels.  
PropertyValueThe content of the cell.  
PropertyWidthThe width of the cell in pixels.  
PropertyXThe X-coordinate in pixels of the cell relative to the table.  
PropertyYThe Y-coordinate in pixels of the cell relative to the table.  
Top
Public Methods
 NameDescription
MethodSetValueSets the cell to a new value.  
Top