Scroll bars size

Hello,


How to change the size of the V/H scroll bars on TTMSFMXTreeView and TTMSFMXMemo Components. The size of those scroll bars looks alien on macOS and I would like to change them to a smaller size.

Best Regards

This is controlled by the FireMonkey framework and depends on the operating system. We will investigate if its possible to change the size of the scrollbars

I was able to do it for the Memo, but I do not know how to do it for the tree view control.

This worked fine under OS X:

Memo1.GetHScroll.Height := 10;
Memo1.GetVScroll.Width := 10;

Hi, 


We have meanwhile investigated this here and for changing the width of the scrollbar, you can use:

  TMSFMXTreeView1.BeginUpdate;
  TMSFMXTreeView1.VerticalScrollBar.Width := 10;
  TMSFMXTreeView1.HorizontalScrollBar.Height := 10;
  TMSFMXTreeView1.EndUpdate;

Great, it is working for me.


Many thanks for your support.