DataGridViewCell.SetValue(Int32, Object) Method
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.
Sets the value of the cell.
protected:
virtual bool SetValue(int rowIndex, System::Object ^ value);
protected virtual bool SetValue (int rowIndex, object value);
protected virtual bool SetValue (int rowIndex, object? value);
abstract member SetValue : int * obj -> bool
override this.SetValue : int * obj -> bool
Protected Overridable Function SetValue (rowIndex As Integer, value As Object) As Boolean
Parameters
- rowIndex
- Int32
The index of the cell's parent row.
- value
- Object
The cell value to set.
Returns
true
if the value has been set; otherwise, false
.
Exceptions
rowIndex
is less than 0 or greater than or equal to the number of rows in the parent DataGridView.
ColumnIndex is less than 0.
Applies to
See also
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.