Table of Contents

Interface IDataGridView

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

A .NET Windows Forms data grid view object.

public interface IDataGridView : ICustomGrid
Inherited Members

Properties

Rows

Returns the rows.

ReadOnlyCollection<ITableRow<ITableCell>> Rows { get; }

Property Value

ReadOnlyCollection<ITableRow<ITableCell>>

Methods

ActivateCell(int, string)

Double-clicks the specified cell in this grid.

void ActivateCell(int row, string columnHeader)

Parameters

row int

0-based row number.

columnHeader string

The column caption.

ActivateColumn(int)

Double-clicks the specified column header in this grid.

void ActivateColumn(int column)

Parameters

column int

0-based column index.

ActivateColumn(string)

Double-clicks the specified column header in this grid.

void ActivateColumn(string columnHeader)

Parameters

columnHeader string

The column caption.

GetCell(int, string)

Returns a cell in the grid.

ITableCell GetCell(int row, string columnHeader)

Parameters

row int

0-based row number.

columnHeader string

The column caption.

Returns

ITableCell

MakeCellVisible(int, string)

Scrolls the specified cell into view.

void MakeCellVisible(int row, string columnHeader)

Parameters

row int

0-based row number.

columnHeader string

The column caption.

SelectCell(int, string)

Selects the specified cell in this grid.

void SelectCell(int row, string columnHeader)

Parameters

row int

0-based row number.

columnHeader string

The column caption.

SelectColumn(int)

Selects (clicks) the specified column header in this grid.

void SelectColumn(int column)

Parameters

column int

0-based column index.

SelectColumn(string)

Clicks the specified column header in this grid.

void SelectColumn(string columnHeader)

Parameters

columnHeader string

The column caption.