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.
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
Here is the sample