Hello,
i want to replace the old panels with infragistic panels. But there are two methods that i need and which are not implemented in the ultrapanel.
The first one is AutoScrollPosition and second one is ScrollControlIntoView.
Are there any alternative solutions?
Thank you,
Bjoern
Hello Bjoern,
They are both implemented off of the UltraPanel's ClientArea.
this.ultraPanel1.ClientArea.ScrollControlIntoView(ultraButton1);this.ultraPanel1.ClientArea.AutoScrollPosition = new Point(10,10);
Let me know if this works for you.
ThanksPurnima