Enum PageOrientationType

PageOrientationType enumeration

Represents print orientation constants.

public enum PageOrientationType

Values

NameValueDescription
Landscape0Landscape orientation
Portrait1Portrait orientation

Examples

[C#]

namespace Demos
{
    using Aspose.Cells;
    using System;

    public class PageOrientationTypeDemo
    {
        public static void PageOrientationTypeExample()
        {
            // Create a new workbook
            Workbook workbook = new Workbook();
            
            // Access the first worksheet in the workbook
            Worksheet worksheet = workbook.Worksheets[0];
            
            // Access the PageSetup object of the worksheet
            PageSetup pageSetup = worksheet.PageSetup;
            
            // Set the page orientation to Landscape
            pageSetup.Orientation = PageOrientationType.Landscape;
            
            // Save the workbook to a file
            workbook.Save("PageOrientationTypeExample_Landscape.xlsx");

            // Set the page orientation to Portrait
            pageSetup.Orientation = PageOrientationType.Portrait;
            
            // Save the workbook to a different file
            workbook.Save("PageOrientationTypeExample_Portrait.xlsx");

            return;
        }
    }
}

See Also