Table of Contents

Interface ITableCell

Namespace
HP.LFT.SDK.WinForms
Assembly
HP.LFT.SDK.dll

A single cell in .NET Windows Forms table.

public interface ITableCell

Properties

ColumnName

The column header name of this cell.

string ColumnName { get; }

Property Value

string

Height

The height of this cell.

int Height { get; }

Property Value

int

Value

The content of this cell.

object Value { get; }

Property Value

object

Width

The width of this cell.

int Width { get; }

Property Value

int

X

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

int X { get; }

Property Value

int

Y

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