TextArea in C#

  • Thread starter Thread starter Dakkar
  • Start date Start date
D

Dakkar

I want to add an textare into my program like in html but i saw there
is no such class as textarea are there anyway to create it?
Thanks

*-----------------------*
Posted at:
www.GroupSrv.com
*-----------------------*
 
are you talking about c# with winforms?
if yes, there you have 2 basic controls for some kind of a text area...
- System.Windows.Forms.RichTextBox
or
- System.Windows.Forms.TextBox

when you use the TextBox, you'll have to set the property Multiline = true
to have a textarea with more than one line!
regars, jazper
 
Back
Top