DataGrid::CurrentCell Property
.NET Framework (current version)
Gets or sets which cell has the focus. Not available at design time.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] property DataGridCell CurrentCell { DataGridCell get(); void set(DataGridCell value); }
Setting the CurrentCell property will cause the grid to scroll and show the cell if it is not already visible.
The following code example shows how to set and get the current cell.
private: void SetCellWithFocus( DataGrid^ myGrid ) { // Set the current cell to cell1, row 1. myGrid->CurrentCell = DataGridCell( 1, 1 ); } void dataGrid1_GotFocus( Object^ /*sender*/, EventArgs^ /*e*/ ) { Console::WriteLine( "{0} {1}", dataGrid1->CurrentCell.ColumnNumber, dataGrid1->CurrentCell.RowNumber ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: