Hi
I'm not good at English sorry
I want to scroll xamspreadsheet panel to some index.
How can I scroll page programmatically?
Thank you
Hi Tg,
There is no programmatical way to scroll the spreadsheet pane to a specific cell in versions prior to the one I mentioned above.
If you require any further assistance on the matter, please let me know.
Sincerely,Radko KolevSenior Software Developer
Updating Infragistics is not an option at the moment. Is there any way to do that in 15.2?
Hello Tg,
The methods I mentioned in my previous post are only available after build version 16.1.20161.2056.I suggest you to upgrade the latest version of the Infragistics WPF controls so you can benefit all new features.
Hi,
How to scroll cell into view in Infragistics version 15.2?
Hello Joseph,
The SpreasheetPane class has a number of methods for scrolling a cell, row or column into view:
public void ScrollCellIntoView(SpreadsheetCell cell);public void ScrollColumnIntoView(int index);public void ScrollRangeIntoView(SpreadsheetCellRange range);public void ScrollRowIntoView(int index);
You can invoke these methods on the active pane:XamSpreadsheet.ActivePane
or any other XamSpreadsheet's pane:XamSpreadsheet.Panes[]
If you require any further assistance, please do not hesitate to ask.