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

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -