Change page orientation
GroupDocs.Merger allows to set Portrait or Landscape page orientation for specific or all document pages.
Here are the steps to change page orientation:
- Initialize OrientationOptions class with desired orientation mode and page numbers;
- Instantiate Merger object with source document path or stream;
- Call ChangeOrientation method and pass OrientationOptions object to it;
- Call Save method specifying file path to save resultant document.
The following code sample demonstrates how to change page orientation:
string filePath = @"c:\sample.docx";
string filePathOut = @"c:\output\result.docx";
OrientationOptions orientationOptions = new OrientationOptions(OrientationMode.Landscape, new int[] { 3, 4 });
using (Merger merger = new Merger(filePath))
{
merger.ChangeOrientation(orientationOptions);
merger.Save(filePathOut);
}
More resources
Advanced Usage Topics
To learn more about document merging features, please refer the advanced usage section.
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Merger for .NET examples, plugins and showcase
- GroupDocs.Merger for Java examples, plugins and showcase
Free Online App
Along with full featured .NET library we provide simple, but powerful free Apps.
You are welcome to merge your documents with our free online GroupDocs Merger App.