Page 1 of 1

Scrollbar

Posted: Mon Mar 15, 2010 7:09 pm
by Ljosse
Hello,

What is the method to disable the scroolbar in the menu ?

Thanks,

L.JOSSE

Re: Scrollbar

Posted: Tue Mar 16, 2010 4:49 am
by Tom Moran
Scrollbars is a property of the GdViewer. Set to True for scrollbars or to False for no scrollbars.

Tom

Re: Scrollbar: C++/VC++ Disable only Vertical ScrollBar and Keep Horizontal ScrollBar

Posted: Tue Feb 04, 2020 5:51 pm
by joeltom21
I see that that PutScrollBars(FALSE) will disable both vertical and horizontal scroll bar. In my case I need to disable only the vertical scroll bar and keep the horizontal scroll bar intact. Is there a way to achieve it?

Or is there a way to hide the vertical scroll bar alone? All help on this much appreciated

Thanks,
Joel

Re: Scrollbar

Posted: Mon Feb 10, 2020 11:07 am
by loicaigon
Hi Joel,

Thanks for getting in touch with us. Let me check with engineers and come back to you asap!

Best regards,

Re: Scrollbar

Posted: Mon Feb 10, 2020 2:19 pm
by Hugo
Hi Joel,

When you use GdViewer1.ScrollBars = true; this will display both scrollbars. We do not have any methods for enabling/disabling 1 at a time.

This instruction will allow you to visualize which Scrollbars are currently visible.
>if ((GdViewer1.HScrollVisible == false) || (GdViewer1.VScrollVisible == false))

Regards,