DataGridViewRow::CreateCells Method (DataGridView^)

 

Clears the existing cells and sets their template according to the supplied DataGridView template.

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

public:
void CreateCells(
	DataGridView^ dataGridView
)

Parameters

dataGridView
Type: System.Windows.Forms::DataGridView^

A DataGridView that acts as a template for cell styles.

Exception Condition
ArgumentNullException

dataGridView is null.

InvalidOperationException

A row that already belongs to the DataGridView was added.

-or-

A column that has no cell template was added.

This method clears the row's DataGridViewCellCollection and reinitializes it with the CellTemplate property of each column of the dataGridView parameter. As a result, the row adopts the appearance and behavior of a row from the dataGridView parameter.

.NET Framework
Available since 2.0
Return to top
Show: