GroupDocs.Merger for .NET 24.11 Release Notes
There are few features and enhancement in this release.
Full list of changes in this release
Key | Category | Summary |
---|---|---|
MERGERNET-1824 | Feature | Implement an ability to disable section breaks in the Word merged document |
MERGERNET-1754 | Feature | Implement a new Diagram VST file format |
MERGERNET-1753 | Feature | Implement a new Diagram VSS file format |
MERGERNET-1803 | Enhancement | Add 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
This section lists public API changes that were introduced in GroupDocs.Merger for .NET 24.11. It includes not only new and obsoleted public methods, but also a description of any changes in the behavior behind the scenes in GroupDocs.Merger which may affect existing code. Any behavior introduced that could be seen as a regression and modifies existing behavior is especially important and is documented here.
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