DataGridCell Constructor (Int32, Int32)

 

Initializes a new instance of the DataGridCell class.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
DataGridCell(
	int r,
	int c
)

Parameters

r
Type: System::Int32

The number of a row in the System.Windows.Forms::DataGrid.

c
Type: System::Int32

The number of a column in the System.Windows.Forms::DataGrid.

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;
   }

.NET Framework
Available since 1.1
Return to top
Show: