dave9909
dave9909

Reputation: 129

c# Write data to an rtf file

I am trying to write data to an RTF file and set certain characters to a different color. I found out how to do it in a box but I can't figure out how to write it to a file.

Upvotes: 0

Views: 2978

Answers (1)

Itay Karo
Itay Karo

Reputation: 18286

If by "do it on a box" you mean RichTextBox you can use the RichTextBox.SaveFile() mothod.
Take a look here.

Upvotes: 1

Related Questions