Interface IComponentOneGrid
Base interface for ComponentOne C1FlexGrid control and ComponentOne C1TrueDBGrid object.
public interface IComponentOneGrid : ICustomGrid
- Inherited Members
Properties
Rows
Returns the rows.
ReadOnlyCollection<ITableRow<IC1TableCell>> Rows { get; }
Property Value
Methods
ActivateCell(int, string)
Double-clicks the specified cell in this grid.
void ActivateCell(int row, string columnHeader)
Parameters
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.
GetCell(int, string)
Returns a cell in the grid.
IC1TableCell GetCell(int row, string columnHeader)
Parameters
Returns
MakeCellVisible(int, string)
Scrolls the specified cell into view.
void MakeCellVisible(int row, string columnHeader)
Parameters
OpenCellElement(int, int)
Selects the specified cell and opens a cell's pop-up cell element.
void OpenCellElement(int row, int column)
Parameters
OpenCellElement(int, string)
Selects the specified cell and opens a cell's pop-up cell element.
void OpenCellElement(int row, string columnHeader)
Parameters
SelectCell(int, string)
Selects the specified cell in this grid.
void SelectCell(int row, string columnHeader)
Parameters
SelectColumn(int)
Selects (clicks) the specified column header in a grid.
void SelectColumn(int column)
Parameters
columnint0-based column index.
SelectColumn(string)
Selects (clicks) the specified column header in a grid.
void SelectColumn(string columnHeader)
Parameters
columnHeaderstringThe column caption.
SetFilter(int, string)
Applies the specified filter string to the specified column.
void SetFilter(int column, string filter)
Parameters
SetFilter(string, string)
Applies the specified filter string to the specified column.
void SetFilter(string columnHeader, string filter)
Parameters
Sort(int)
Sorts this table by the specified column (ascending).
void Sort(int column)
Parameters
columnint0-based column index.
Sort(string)
Sorts this table by the specified column (ascending).
void Sort(string columnHeader)
Parameters
columnHeaderstringThe column caption.
SortDescending(int)
Sorts this table by the specified column (descending).
void SortDescending(int column)
Parameters
columnint0-based column index.
SortDescending(string)
Sorts this table by the specified column (descending).
void SortDescending(string columnHeader)
Parameters
columnHeaderstringThe column caption.