ggc - disabling ScrollBars

Hi,

How can I prevent the ggc scroll bars (either or both) from appearing ?


Thanks in advance.

1 Reply

HA haneefm Syncfusion Team May 21, 2007 05:32 PM UTC

Hi Ryan,

You can try this :

this.gridGroupingControl1.TableControl.HScroll = false;
this.gridGroupingControl1.TableControl.HScrollBehavior = GridScrollbarMode.Disabled;
this.gridGroupingControl1.TableControl.VScroll = false;
this.gridGroupingControl1.TableControl.VScrollBehavior = GridScrollbarMode.Disabled;

Best regards,
Haneef

Loader.
Up arrow icon