PDFExport.DesignExt.cs 406 B

123456789101112131415161718
  1. namespace FastReport.Export.Pdf
  2. {
  3. partial class PDFExport
  4. {
  5. #region Public Methods
  6. /// <inheritdoc/>
  7. public override bool ShowDialog()
  8. {
  9. using (FastReport.Forms.PDFExportForm dialog = new FastReport.Forms.PDFExportForm())
  10. {
  11. return dialog.ShowDialog(this);
  12. }
  13. }
  14. #endregion Public Methods
  15. }
  16. }