AD
Administrator
Syncfusion Team
March 14, 2006 12:14 PM UTC
Hi Raymond,
The QueryHideCol and the QueryHideRow events were removed because it turned out to be unusable in conjunction with required scrollbar management.
But a row or a column can be hidden or unhidden by just setting the this.gridControl1.Rows.Hidden[rowIndex] =true; this.gridControl1.Cols.Hidden[colIndex] = true;
and
this.gridControl1.Rows.Hidden[rowIndex] =false; this.gridControl1.Cols.Hidden[colIndex] = false;
respectively.
Regards,
Calvin.