This code doesn't work for me.
C#var vsp = srLiveView.RichEditControlAce.VerticalScrollPosition;
srLiveView.RichEditControlAce.RtfText = documentServer.RtfText;
srLiveView.RichEditControlAce.VerticalScrollPosition = vsp;
although VSP is a number in the thousands, setting VerticalScrollPosition doesn't do anything and just remains at 0.
Do I need to do something else to poke it into building the document before setting a VerticalScrollPosition?
Is there a better way?
documentServer builds up a document and assigns it to srLiveView.RichEditControlAce as a 'live' preview.
Uses clicks a checkbox which results in generated document adding or removing a page or section.
Would like to have the 'live' view stay showing what the user last scrolled to instead of blindly going back to the top of the document.