Hi to all. Is it possible to hide the scrollbars in an UltraListView control? If so, which property is used to achieve this? I am unable to find anything. FYI, I am creating a form with an UltraListView which is to show one row for each day-of-the-week and hence the form does not need to be resizable - thus I do not require scrollbars in my UltraListView control.
There is no way to hide the scrollbars through the public object model. You could use the IUIElementCreationFilter interface to remove the elements, but the caviat is that the metrics calculation routines don;t know about this so they will still carve out space for them, making that space unavailable to items.
Note that the scrollbars only appear when they are necessary, so if the combined item sizes don't exceed the size of the viewable area, they will not appear.