Why MaxLength property of a textbox with multiline mode doesn't work. So what is the basic diffference between a textbox in single line and multiline mode?
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
The TextBox.MaxLength property only works when the TextMode property is set to SingleLine or Password.
The difference between SingleLine and MultiLine is that the latter has more than one row. You can set the number of rows to display using the Rows property and can also specify (using the Wrap property) whether the text should wrap around automatically to the next row when it reaches the end of a row.
VulpesPosted Jul 20, 2011, 4:48 AM