Table of Contents

Interface ITableCell

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

Namespace: HP.LFT.SDK.WPF
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITableCell

Properties

ColumnName

The column header name of the cell.

Declaration
string ColumnName { get; }
Property Value
Type Description
string

Height

The height of the cell in pixels.

Declaration
int Height { get; }
Property Value
Type Description
int

Value

The content of the cell.

Declaration
object Value { get; }
Property Value
Type Description
object

Width

The width of the cell in pixels.

Declaration
int Width { get; }
Property Value
Type Description
int

X

The X-coordinate in pixels of the cell relative to the table.

Declaration
int X { get; }
Property Value
Type Description
int

Y

The Y-coordinate in pixels of the 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.