The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
When setting the .text property of the control, then displaying the containing form, the control is by default scrolled to the bottom of the text. It there a way to have it default to displaying the beginning of the text, not the end? Thanks
ADAdministrator Syncfusion Team March 21, 2003 01:01 PM UTC
Hi Ivan,
To adjust this, you will need to modify the location of the cursor. This can be done as follows:
After you insert the text, or set the text property, you can then set the current line and character to be 1, and then scroll to the caret.
editControl1.CurrentChar = 1;
editControl1.CurrentLine = 1;
editControl1.ScrollToViewCaret();
-Syncfusion Technical Support
Please note that there is a separate forum for Essential Edit issues.