GroupDocs.Merger for .NET 24.11 Release Notes

There are few features and enhancement in this release.

Full list of changes in this release

KeyCategorySummary
MERGERNET-1824FeatureImplement an ability to disable section breaks in the Word merged document
MERGERNET-1754FeatureImplement a new Diagram VST file format
MERGERNET-1753FeatureImplement a new Diagram VSS file format
MERGERNET-1803EnhancementAdd PDF document permissions for the security methods

Major features

  • Implemented an ability to disable section breaks in the Word merged document
  • Implemented a new Diagram VST file format
  • Implemented a new Diagram VSS file format
  • Added PDF document permissions for the security methods

Public API and backward incompatible changes

A new VST and VSS formats were added

  • New VST format was added.
  • New VSS format was added.
  • Please refer to the following documentation article for more details: Supported formats

How to disable section breaks in the Word merged document

Also, there is an ability to disable section breaks in the Word merged document, please see an according example below:

// Load the source DOC file
using (Merger merger = new Merger(@"c:\sample1.doc"))
{
    // Define Word join options
    WordJoinOptions joinOptions = new WordJoinOptions();
    joinOptions.Mode = WordJoinMode.DisableSectionBreaks;
    // Add another DOC file to merge
    merger.Join(@"c:\sample2.doc", joinOptions);
    // Merge DOC files and save result
    merger.Save(@"c:\merged.doc");
}

How to add PDF document permissions for the security methods

You can see the following documentation articles for more details: Add password to PDF with permissions