HTMLExport.OpenSource.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using FastReport.Utils;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Globalization;
  5. using System.IO;
  6. using System.Text;
  7. namespace FastReport.Export.Html
  8. {
  9. public partial class HTMLExport
  10. {
  11. private void ExportHTMLPageBegin(object data)
  12. {
  13. HTMLData d = (HTMLData)data;
  14. ExportHTMLPageLayeredBegin(d);
  15. }
  16. private void ExportHTMLPageEnd(object data)
  17. {
  18. HTMLData d = (HTMLData)data;
  19. ExportHTMLPageLayeredEnd(d);
  20. }
  21. private bool HasExtendedExport(ReportComponentBase obj)
  22. {
  23. return false;
  24. }
  25. partial void ExtendExport(FastString Page, ReportComponentBase obj, FastString text);
  26. private class ExportIEMStyle
  27. {
  28. }
  29. partial void SetExportableAdvMatrix(Base c);
  30. private string GetHrefAdvMatrixButton(ReportComponentBase obj, string href)
  31. {
  32. return string.Empty;
  33. }
  34. /// <inheritdoc/>
  35. protected override void ExportBand(BandBase band)
  36. {
  37. if (ExportMode == ExportType.Export)
  38. base.ExportBand(band);
  39. ExportBandLayers(band);
  40. }
  41. }
  42. }