IDataGridView Interface
A .NET Windows Forms data grid view object.

C# Syntax

public interface IDataGridView : ICustomGrid  
Public Properties
 NameDescription
PropertyRowsReturns the rows.  
PropertyTableTestObjectReturns the ITable test object this custom grid was accessed from. (Inherited from HP.LFT.SDK.WinForms.ICustomGrid)
Top
Public Methods
 NameDescription
MethodActivateCellDouble-clicks the specified cell in this grid.  
MethodActivateColumnOverloaded. Double-clicks the specified column header in this grid.  
MethodGetCell

Returns a cell in the grid.

C# Syntax

ITableCell GetCell( 
   int row,
   string columnHeader
)

Parameters

row
0-based row number.
columnHeader
The column caption.
MethodMakeCellVisibleScrolls the specified cell into view.  
MethodSelectCellSelects the specified cell in this grid.  
MethodSelectColumnOverloaded. Selects (clicks) the specified column header in this grid.  
Top