Line Numbers
Edit WPF enables users to display line numbers for the content in the EditControl. Line numbers can be displayed or hidden by using the ShowLineNumber
property of the EditControl class. The following lines of code can be used to display or hide line numbers in EditControl.
<sfedit:EditControl Name="editControl" ShowLineNumber="False">
</sfedit:EditControl>
editControl.ShowLineNumber = false;
The following image displays hidden line numbers.
Events
CaretPositionChanged
CaretPositionChanged event occurs when the caret position of the text in the EditControl
is changed.
This event receives two arguments namely sender
that handles EditControl
and CaretPositionEventArgs as objects.
The CaretPositionEventArgs object contains the following properties:
- LineNumber - Gets the current line number value of the EditControl.
- CursorIndex - Gets the current cursor index value of the EditControl.
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page