Articles in this section
Category / Section

How to navigate through the text in terms of characters, words and lines in the WinForms SyntaxEditor (EditControl)?

1 min read

Text navigation

Text can be navigated in terms of characters, words and lines in the SyntaxEditor (EditControl). Please refer the below code snippets.

C#

Code to move left by one character
this.editControl1.MoveLeft();
Code to move Right by one character
this.editControl1.MoveRight();
Code to move Left by one word
this.editControl1.MoveLeftWord();
Code to move Right by one word
this.editControl1.MoveRightWord();
Code to move to the begining of a line
this.editControl1.MoveToLineStart();
Code to move to the End of a line
this.editControl1.MoveToLineEnd();

 

VB

Code to move left by one character
Me.editControl1.MoveLeft()
Code to move Right by one character
Me.editControl1.MoveRight()
Code to move Left by one word
Me.editControl1.MoveLeftWord()
Code to move Right by one word
Me.editControl1.MoveRightWord()
Code to move to the begining of a line
Me.editControl1.MoveToLineStart()
Code to move to the End of a line
Me.editControl1.MoveToLineEnd()

 

Reference link: https://help.syncfusion.com/windowsforms/syntaxeditor/text-navigation

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied