用PdfRtfWordFormatOptions: 
private void SetFormatOptions (int firstPage, int lastPage, bool useRange)
{
   // Declare variables and get the export options.
   ExportOptions exportOpts = new ExportOptions();
   PdfRtfWordFormatOptions pdfRtfWordOpts = new 
   PdfRtfWordFormatOptions ();   // Set the export format.
   pdfRtfWordOpts.FirstPageNumber = firstPage;
   pdfRtfWordOpts.LastPageNumber = lastPage;
   pdfRtfWordOpts.UsePageRange = useRange;
   Report.ExportOptions.FormatOptions = pdfRtfWordOpts;
   Report.ExportOptions.ExportFormatType = 
   ExportFormatType.RichText;
}