EmailExport.DesignExt.cs 580 B

1234567891011121314151617181920212223
  1. using System.Windows.Forms;
  2. namespace FastReport.Export.Email
  3. {
  4. partial class EmailExport
  5. {
  6. #region Public Methods
  7. /// <summary>
  8. /// Displays the dialog box in which you can set up all parameters.
  9. /// </summary>
  10. /// <returns><b>true</b> if user pressed OK button in the dialog.</returns>
  11. public DialogResult ShowDialog()
  12. {
  13. using (EmailExportForm form = new EmailExportForm(this))
  14. {
  15. return form.ShowDialog();
  16. }
  17. }
  18. #endregion Public Methods
  19. }
  20. }