Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
460
UltraWinExplorerBar - how to scroll an item in view
posted

Hi!

The UltraWinExplorerBarItem has a readonly property, called IsInView. Using this property I can find out whether a particular item, perhaps the ActiveItem, is in view. This is very good, but how can I bring this item in view if it is not?

I have not been able to figure it out and I would really have to scroll or whatever an certain UltraWinExplorerBarItem in view.

Grateful for any advice.

Parents
No Data
Reply
  • 53790
    Suggested Answer
    posted

    Hi,

    Maybe one possible solution could be if you are using the methods below:

    ultraExplorerBar1.Groups[0].EnsureGroupHeaderInView();

    ultraExplorerBar1.Groups[0].EnsureGroupInView();

    ultraExplorerBar1.Groups[0].Expanded =true;

    Please take a look at the attached sample and video file for more details and let me know if you have any questions

    Regards

    Video337.rar
Children