Change the value of a cell directly in code.

  • Thread starter Thread starter james ou
  • Start date Start date
J

james ou

Dose have any method to change the value of a cell in the
datagrid directly in code?
 
-----Original Message-----
Dose have any method to change the value of a cell in the
datagrid directly in code?
.

the datagrid is a matrix, u can use:

dataGrid1[int row, int column] = something
or dataGrid1[dataGridCell cell] = something

the cell must exists and, something, must be of the same
type as the one define for the cell.

greetings, daniel.
 
Back
Top