MFC - Format rtf document to two columns
I am merging many rtf files into a single file for printing. In order to save paper, I would like to have the printout of the merged rtf document in two columns per page.
What is the best w开发者_JAVA百科ay to do this?
I found out a way of doing this.
- Load the rtf document into a CRichEditCtrl.
- Use the CRichEditCtrl's FormatRange method to format and render the text to different part of the paper; left column and right column in this case.
精彩评论