Is your feature request related to a problem? Please describe.
Right now Seamless is false by default and when exporting to Excel the page numbers are shown
Describe the solution you'd like
Seamless should be true by default
Describe alternatives you've considered
It's possible to change it onExportParameters event:
private void Report_ExportParameters(object? sender, ExportParametersEventArgs e)
{
if (e.Export is Excel2007Export excel2007Export)
{
excel2007Export.PageBreaks = false;
excel2007Export.SplitPages = false;
excel2007Export.Seamless = true;
}
}
but if EnableSettings is true in toolbar it will be not possible to enable or disable Seamless
Is your feature request related to a problem? Please describe.
Right now
Seamlessis false by default and when exporting to Excel the page numbers are shownDescribe the solution you'd like
Seamlessshould betrueby defaultDescribe alternatives you've considered
It's possible to change it on
ExportParametersevent:but if
EnableSettingsis true in toolbar it will be not possible to enable or disableSeamless