-
Notifications
You must be signed in to change notification settings - Fork 660
Set Seamless true by default #817
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
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
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request