We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

ResizeToFit including Hidden rows/Cols

Hi Is there any way to have the ResizeToFit methods on ColWidths and RowHeights take hidden rows/cols into account when calculating the sizes for the entire table? Jimmy

1 Reply

AD Administrator Syncfusion Team December 2, 2003 11:30 AM UTC

I don''t really have a good suggestion for this. If you do not have too many hidden rows/columns, then you could just try unhiding them, calling resize to fit, and then rehiding them. Here is some code that resizes the columsn taking into account text in hidden rows. this.grid.BeginUpdate(); bool[] save = this.grid.Model.Rows.Hidden.GetRange(1, this.grid.Model.RowCount); this.grid.Model.Rows.Hidden.ResetRange(1, this.grid.Model.RowCount); this.grid.Model.ColWidths.ResizeToFit(GridRangeInfo.Table()); this.grid.Model.Rows.Hidden.SetRange(1, this.grid.Model.RowCount, save, true); this.grid.EndUpdate(); this.grid.Refresh();

Loader.
Live Chat Icon For mobile
Up arrow icon