Im using the TX TextEditingControl (free version) and I think this is absolutely great.
But I cant seem to get the RTF (Text) content that I need.
//Define
private TXTextControl.TextControl rtf = new TXTextControl.TextControl();
[...code...]
private void button_Click(object sender, EventArgs e) {..
//rtf.Save(s, TXTextControl.StreamType.RichTextFormat);
//This is what I would like to do but I cant find the property or function that does this.
string s = rtf.DocumentRTF;
//Im expecting the standard RTF Format but I get blank
MessageBox.Show(s);
}
Found it! There is no RTF property, to get the output you must use the save() function. Luckily you can write to streams and strings.