When using the ExportToDisk method of ReportDocument it shrinks all of the fonts to 0.5pt than they were specified in the report. I'm creating a word document so specified the line of code as such:

myReport.ExportToDisk(CrystalDecisions.[Shared].ExportFormatType.WordForWindows, path)

I've also experimented with creating a RTF instead (using ExportFormatType.RichText) but to no avail. I seem to remember coming across a reason with a registry fix - but I've lost it now.

Must warn you this is a legacy system (.NET 1)

Any ideas?

link|improve this question

feedback

1 Answer

RTF format is a text file whose format is documented. You should easily be able to postprocess it to adjust any font properties. You can download the spec from Microsoft for further info.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.