I\'ve made a C# usercontrol with one textbox and one richtextbox.
How can I access the properties of the richtextbox from outside the usercontrol.
For exampl
You need to make a public property for the richtextbox, or expose some other property that does the job of setting the richtextbox text like:
private RichTextBox rtb; public string RichTextBoxText { get { return rtb.Text; } set { rtb.Text = value; } }