DataGridViewRow.SetValues Method
Sets the values of the row's cells.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- values
- Type: System.Object[]
One or more objects that represent the cell values in the row.
-or-
An Array of Object values.
| Exception | Condition |
|---|---|
| ArgumentNullException |
values is null. |
| InvalidOperationException |
This method is called when the associated DataGridView is operating in virtual mode. -or- This row is a shared row. |
The values parameter represents a variable number of arguments used to populate cell values in the row. These values can be passed to this method as multiple, individual arguments or as members of a single Array. Because the values are expected to be instances of type Object, however, if you pass in an array of value-type values (such as Int32 values), this method will treat the array as a single object and assign it to a single cell. To avoid this behavior, you must cast a value-type array to an Object array or pass in multiple values as multiple arguments.
If there are more values in the values list than there are cells to be initialized, this method ignores the extra values and returns false. This method also returns false if any of the specified values cannot be set.
If there are fewer values than there are cells, the remaining unmatched cells retain their current values.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.