DataGridViewImageCell.DefaultNewRowValue Property
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.
Gets the default value that is used when creating a new row.
public:
virtual property System::Object ^ DefaultNewRowValue { System::Object ^ get(); };
public override object DefaultNewRowValue { get; }
public override object? DefaultNewRowValue { get; }
member this.DefaultNewRowValue : obj
Public Overrides ReadOnly Property DefaultNewRowValue As Object
Property Value
An object containing a default image placeholder, or null
to display an empty cell.
Remarks
The value of this property should be of type Image or type Icon, depending on the value of the ValueIsIcon property.
Whenever a DataGridView is displayed in which new rows can be added, the last row is an empty new row of cells loaded with default values. Override this property to provide a different default image for these cells or to return null
to avoid displaying images.