DataGridViewRow::IsNewRow Property
.NET Framework (current version)
Gets a value indicating whether the row is the row for new records.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System::Booleantrue if the row is the last row in the DataGridView, which is used for the entry of a new row of data; otherwise, false.
Because the row for new records is in the Rows collection, use the IsNewRow property to determine whether a row is the row for new records or is a populated row.
A row stops being the new row when data entry into the row begins.
The following code example uses the IsNewRow property to prevent attempts to set the label of the row for new records.
// Set row labels. void Button6_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { int rowNumber = 1; System::Collections::IEnumerator^ myEnum = safe_cast<System::Collections::IEnumerable^>(dataGridView->Rows)->GetEnumerator(); while ( myEnum->MoveNext() ) { DataGridViewRow^ row = safe_cast<DataGridViewRow^>(myEnum->Current); if ( row->IsNewRow ) continue; row->HeaderCell->Value = String::Format( L"Row {0}", rowNumber ); rowNumber = rowNumber + 1; } dataGridView->AutoResizeRowHeadersWidth( DataGridViewRowHeadersWidthSizeMode::AutoSizeToAllHeaders ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: