DataGridCell(Int32, Int32) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the DataGridCell class.
public:
DataGridCell(int r, int c);
public DataGridCell(int r, int c);
new System.Windows.Forms.DataGridCell : int * int -> System.Windows.Forms.DataGridCell
Public Sub New (r As Integer, c As Integer)
Parameters
Examples
The following example creates a DataGridCell and sets the new instance to the CurrentCell of a System.Windows.Forms.DataGrid control.
private:
void SetCell()
{
// Set the focus to the cell specified by the DataGridCell.
DataGridCell dc;
dc.RowNumber = 1;
dc.ColumnNumber = 1;
dataGrid1->CurrentCell = dc;
}
private void SetCell()
{
// Set the focus to the cell specified by the DataGridCell.
DataGridCell dc = new DataGridCell();
dc.RowNumber = 1;
dc.ColumnNumber = 1;
dataGrid1.CurrentCell = dc;
}
Private Sub SetCell()
' Set the focus to the cell specified by the DataGridCell.
Dim dc As DataGridCell
dc.RowNumber = 1
dc.ColumnNumber = 1
DataGrid1.CurrentCell = dc
End Sub