Is there a property on the UltraGrid that will cause the grid control to expand or contract to show all rows? So if I have 200 rows expand the grid control to show all 200. If I delete one, contract the grid to show only 199. Basically there wouldn't be a scroll bar or dead space between the last row and the add new box. Thanks for any help.
No, the grid does not have this functionality. You can submit a feature request to Infragistics.
Request a Feature or Component
You want the collapsed rows in the entire UltraGrid to expand? How about this function:
ultraGrid1.Rows.ExpandAll( true );
I accidentally ran across it while trying to figure out how to have my UltraGrid show its collapsed sorted groups expanded. Is the sort of thing you are trying to do?