Skip to content

Set Seamless true by default #817

Description

@Bykiev

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions