WorkbookSettings.SetPageOrientationType

WorkbookSettings.SetPageOrientationType method

Set the type of print orientation for the whole workbook.

public void SetPageOrientationType(PageOrientationType pageOrientationType)
ParameterTypeDescription
pageOrientationTypePageOrientationTypeThe page orientation type

Examples

using System;
using Aspose.Cells;

namespace AsposeCellsExamples
{
    public class WorkbookSettingsMethodSetPageOrientationTypeWithPageOrientationTypeDemo
    {
        public static void Run()
        {
            Workbook workbook = new Workbook();
            workbook.Worksheets.Add();
            workbook.Worksheets.Add();
            
            // Set page orientation to Portrait for all worksheets
            workbook.Settings.SetPageOrientationType(PageOrientationType.Portrait);
            
            // Verify the orientation is set correctly
            foreach (Worksheet sheet in workbook.Worksheets)
            {
                Console.WriteLine("Worksheet: " + sheet.Name + " - Orientation: " + sheet.PageSetup.Orientation);
            }
        }
    }
}

See Also