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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top