Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
130
Eliminate padding around Bands in UltraWinGrid
posted

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

 

Parents
No Data
Reply
  • 927
    Verified Answer
    posted

    I think what you want is to eliminate the InterBandSpacing. This is a propery of the DisplayLayout:

       ultraGrid1.DisplayLayout.InterBandSpacing = 0;

Children