vb.net - UltraGrid get all cells -


i can't find way all cells in ultragrid. want through them in foreach loop.

is there way them ?

loop through rows of grid, through cells of row:

foreach(var row in mygrid.rows) {    foreach(var cell in row.cells)    {       // stuff    } } 

Comments

Popular posts from this blog

ios - iPhone/iPad different view orientations in different views , and apple approval process -

php - HTTP_REFERER woes: How can I allow access to a specific page, only when a visitor has visited another specific page beforehand? -

java Extracting Zip file -