Articles in this section

How to disable particular lines in EditControl?

You can disable particular lines in EditControl by using its MarkAsReadOnly function.  This function helps to set back color and fore color for the disabled line. The following code example demonstrates the same.

C#

void Form1_Load(object sender, EventArgs e)
{
//Sets text as readonly
this.editControl1.MarkAsReadOnly(new Point(1, 2), new Point(1, 3), Color.DarkGray, Color.White);
}

VB

Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
'Sets text as readonly
Me.editControl1.MarkAsReadOnly(New Point(1, 2), New Point(1, 3), Color.DarkGray, Color.White)
End Sub

The following screenshot illustrates the output.

Highlighted line shows the disabled line

Figure 1: Highlighted line shows the disabled line

Sample:

http://www.syncfusion.com/downloads/support/directtrac/general/DisableParticularLine-734319753.zip

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