Hi! I'm using Ultragrid, and I'd like to change a margin between parent band and child band, but I couldn't find out any ways. So do you have such properties or method ?
Here the region I'd like to control is depicted.
Hello,
Thank you for the screenshot and the detailed explanations.
You could use the 'InterBandSpacing' property in order to achieve the desired behavior:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
{
e.Layout.InterBandSpacing = 0;
}
Please feel free to let me know if a question about our tool set comes up on your mind.
Yeah, that's it. Thanks for your quick reply!