Свойство | Type | Description | |
---|---|---|---|
FireBusinessObjectSelected | void |
Méthode | Description | |
---|---|---|
BeginEdit ( bool selectAll ) : bool | ||
CancelEdit ( ) : bool | ||
ChangeToPageOfRow ( int rowNum ) : void |
When pagination is used, changes the current page to the one containing the given row number. implements IDataGridView
|
|
Sort ( IDataGridViewColumn dataGridViewColumn, ListSortDirection direction ) : void | ||
Sort ( string columnName, bool ascending ) : void | ||
WinFormsDataGridViewAdapter ( System.Windows.Forms.DataGridView gridView ) : System | ||
this ( int columnIndex, int rowIndex ) : IDataGridViewCell |
Provides an indexer to get or set the cell located at the intersection of the column and row with the specified indexes.
|
Méthode | Description | |
---|---|---|
FireBusinessObjectSelected ( object sender, |
public ChangeToPageOfRow ( int rowNum ) : void | ||
rowNum | int | The row that you wish to show the page of. For example, if your grid has /// 30 rows and is set to 20 rows per page, calling ChangeToPageOfRow with an argument /// of 25 will set the page to page 2 since row 25 is on page 2. |
Résultat | void |
public Sort ( IDataGridViewColumn dataGridViewColumn, ListSortDirection direction ) : void | ||
dataGridViewColumn | IDataGridViewColumn | |
direction | ListSortDirection | |
Résultat | void |
public Sort ( string columnName, bool ascending ) : void | ||
columnName | string | |
ascending | bool | |
Résultat | void |
public WinFormsDataGridViewAdapter ( System.Windows.Forms.DataGridView gridView ) : System | ||
gridView | System.Windows.Forms.DataGridView | |
Résultat | System |
public this ( int columnIndex, int rowIndex ) : IDataGridViewCell | ||
columnIndex | int | The index of the column containing the cell. |
rowIndex | int | The index of the row containing the cell |
Résultat | IDataGridViewCell |