I have a ScrollBox in my application, I want to decrease the width of it's ScrollBars
how can I change the size of ScrollBars ?
I'm using Delphi XE6
Try this one: Right-Click on your ScrollBox > Edit Custom Style. At Structure seach for ScrollBox1Style1
(you can rename later). Has a child with style name: hscrollbar
and other vscrollbar
that represents the scrollbars. Change the height property of the hscrollbar
and the width of vscrollbar
. Then click 'Apply and Close' at the menu bar.