Having trouble getting help?
Contact Support
Contact Support
Hiding the Scrollbars in Windows Forms Splitter
4 Apr 20241 minute to read
The Horizontal and Vertical scrollbars in SplitterControl can be hidden by using the ShowHorizontalScrollBar and ShowVerticalScrollBar properties.
this.splitterControl1.ShowHorizontalScrollBar = false;
this.splitterControl1.ShowVerticalScrollBar = false;
Me.splitterControl1.ShowHorizontalScrollBar = False
Me.splitterControl1.ShowVerticalScrollBar = False
-
Hiding Horizontal Scrollbar
-
Hiding Vertical Scrollbar