Place a cursor on given line-character in C sharp
How can we programmatically place a cursor on the given line or on the character in a RichTextBox control in the C#?
Expert
RichTextBox control has Lines array property that demonstrates one item of the array in separate line. Every line entry has a Length property that can be used to exactly position the cursor at the character, which is shown in the following code:
private void GoToLineAndColumn(RichTextBox RTB, int Line, int Column)
{
int offset = 0;
for(int i = 0; i < Line -1 && i < RTB.Lines.Length; i++)
offset += RTB.Lines[i].Length + 1;
}
RTB.Focus();
RTB.Select(offset + Column, 0);
Illustrate the terms validation controls?
Write the name of the class that manages event and layout of every ToolStrip elements?
Can a private class be declared in a namespace?
How a complex number can be instantiated?
How can CAS be turn-on and turn-off?
Specify the requirements to run ASP.NET AJAX applications on the server?
Describe DataReader object?
Write the use of MaxDate and MinDate properties of a MonthCalender control?
Explain the types of deployment models which are used in the cloud?
In what way we can disable a context menu for the TextBox control?
18,76,764
1959486 Asked
3,689
Active Tutors
1437193
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!