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
Post a Comment