Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the Rich Text Format deprecated?

From the Wikipedia page on Rich Text Format (http://en.wikipedia.org/wiki/Rich_Text_Format):

As of March 2008, the current version is 1.9.1. According to Microsoft's Office 2010 resource kit documentation, Microsoft is discontinuing enhancements to the RTF specification. Further, some new features in Word 2010 and later versions will not save properly to the RTF format.[11]

The reference is to here: http://technet.microsoft.com/en-us/library/cc179199.aspx#BKMK_Changed

I'm working on including some static, formatted text which will be pulled from a local database and will be displayed by an app that is only being used internally.

Should I use the Rich Text Format via .NET's built-in RichTextBox? Will it be deprecated in the near future for Microsoft's new OpenXML format?

Would it be better to skip Rich Text altogether and go with HTML formatting? If so, what .NET control would you recommend?

Obviously I don't want to design my own text formatting control for such a trivial problem, but I don't want to waste development time implementing a nearly deprecated technology.

Thanks!

like image 493
Brett Avatar asked May 25 '11 14:05

Brett


People also ask

Is RTF format still used?

Microsoft discontinued the development of RTF in 2008, but it's still widely supported by apps on almost every operating system.

Which is better HTML or rich text?

An HTML email can contain links and other things that can be dangerous, while a rich text email is safer.

What is new Rich Text Format?

Rich Text Format (RTF) is a file format that lets you exchange text files between different word processors in different operating systems. For example, you can create a file using Microsoft Word in Windows 98, save it as an RTF file (it will have a ".

What are the disadvantages of RTF format?

The major downside is file size. RTF documents are not compressed so they are much larger than the same document saved in . docx or . odt formats that automatically shrink the file.


1 Answers

You're going to be fine for a long long time with the RTF control. It's not going anywhere. There may be better alternatives in the future, but the RTF control won't get deprecated. As Boldewyn said in the comment, enhancements aren't being made to RTF to keep it up to date with the features in Microsoft Word. But the RTF format itself is isn't going anywhere.

like image 129
Tim Avatar answered Nov 15 '22 07:11

Tim