Table of Contents

Interface ITableCell

Namespace
HP.LFT.SDK.WPF
Assembly
HP.LFT.SDK.dll

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

string

Height

The height of the cell in pixels.

int Height { get; }

Property Value

int

Value

The content of the cell.

object Value { get; }

Property Value

object

Width

The width of the cell in pixels.

int Width { get; }

Property Value

int

X

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

int X { get; }

Property Value

int

Y

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

int Y { get; }

Property Value

int

Methods

SetValue(object)

Sets the cell to a new value.

void SetValue(object value)

Parameters

value object

The new value.