Hello all,
Can the UltraGrid rows collection be cast to a DataRowCollection or some other list of DataRows or DataRowViews? Similarly, can the UltraGrid columns collection be cast to a DataColumnCollection or some other list of DataColumns? Thanks in advance for any ideas and/or suggestions!
Thanks for the help!
If I understood you, each row datasource is a DataRow (or DataRowView).
grid.Rows.OfType<UltraGridRow>().Select(r => (DataRow)r.ListObject).ToArray()