I cannot find the property that controls this. My requirements are to eliminate the column headers (which I can do with the ColHeadersVisible property on the Band) and the 10 pixel (or so) gap that surrounds each band so the grid appears contiguous. Can I do this without getting into row layouts?
Mitch - mgoldstein@msa.com
I think what you want is to eliminate the InterBandSpacing. This is a propery of the DisplayLayout:
ultraGrid1.DisplayLayout.InterBandSpacing = 0;
Nailed it! Thanks!