Interface IDataGrid
A .NET Windows Forms data grid object.
public interface IDataGrid : ICustomGrid
- Inherited Members
Properties
Rows
Returns collection of rows.
ReadOnlyCollection<ITableRow<ITableCell>> Rows { get; }
Property Value
Methods
ActivateColumn(int)
Double-clicks the specified column header in this grid.
void ActivateColumn(int column)
Parameters
columnint0-based column index.
Back()
Navigates back to parent table.
void Back()
CollapseRow(int)
Collapses the specified row.
void CollapseRow(int row)
Parameters
rowint0-based row number.
ExpandRow(int)
Expands the specified row.
void ExpandRow(int row)
Parameters
rowint0-based row number.
HideParentRow()
Hides the parent row when the child grid is displayed.
void HideParentRow()
OpenCellRelation(int, int)
Opens the child table referenced by the link in the specified cell.
void OpenCellRelation(int row, int column)
Parameters
SelectColumn(int)
Selects (clicks) the specified column header in this grid.
void SelectColumn(int column)
Parameters
columnint0-based column index.
ShowParentRow()
Displays the parent row when the child grid is displayed.
You can use OpenCellRelation(int, int) to display the child table of a selected cell. You can use HideParentRow() to hide a displayed parent row.
void ShowParentRow()