Home » .Net » C#.Net » C#.Net Windows Development

TextBox.Multiline Property with Example in C#.Net

C#.Net - TextBox.Multiline Property with Example: Here, we are going to learn about the Multiline property of TextBox Control in C#.Net Windows Application Development.
Submitted by IncludeHelp, on September 10, 2018

Here we are demonstrating use of Multiline property of the TextBox Control.

Multiline property contains two values:

  1. True: We can enter text in more than one line
  2. False: We can enter text in only single line

By default this is False.

Example:

TextBox.Multiline Property with Example in C#.Net

In this example, we took a Windows form that contains a textbox named txtInput, we can change name of the control using name property. And we set Multiline property to True using property window, we can open property window using "F4" short-cut key for selected control.

TextBox.Multiline Property with Example in C#.Net

We can change this property using code:

private void Form1_Load(object sender, EventArgs e)
{
	textInput.Multiline = true;
}


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.