menu

Xamarin.iOS

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class PdfPageOrientation - Xamarin.iOS API Reference | Syncfusion

    Show / Hide Table of Contents

    Class PdfPageOrientation

    Enumerator that represents the PDF page orientations.

    Inheritance
    System.Object
    PdfPageOrientation
    Namespace: Syncfusion.Pdf
    Assembly: Syncfusion.Pdf.Portable.dll
    Syntax
    public sealed class PdfPageOrientation : Enum
    Remarks

    Default value is Portrait. To know more about document settings refer this link.

    Examples
    //Create a new PDF document.
    PdfDocument document = new PdfDocument();
    //Set the page size.
    document.PageSettings.Size = PdfPageSize.A4;
    //Change the page orientation to landscape.
    document.PageSettings.Orientation = PdfPageOrientation.Landscape;
    //Add a page to the document.
    PdfPage page = document.Pages.Add();
    //Create PDF graphics for the page.
    PdfGraphics graphics = page.Graphics;
    //Create the PDF font instance.
    PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 20);
    //Draw the text.
    graphics.DrawString("Hello World!!!", font, PdfBrushes.Black, new PointF(0, 0));
    //Save the document.
    document.Save("Output.pdf");
    //Close the document.
    document.Close(true);
    'Create a new PDF document.
    Dim document As PdfDocument = New PdfDocument()
    'Set the page size.'
    document.PageSettings.Size = PdfPageSize.A4
    'Change the page orientation to landscape.
    document.PageSettings.Orientation = PdfPageOrientation.Landscape
    'Add a page to the document.
    Dim page As PdfPage = document.Pages.Add()
    'Create PDF graphics for the page.
    Dim graphics As PdfGraphics = page.Graphics
    'Create the PDF font instance.
    Dim font As PdfFont = New PdfStandardFont(PdfFontFamily.Helvetica, 20)
    'Draw the text.
    graphics.DrawString("Hello World!!!", font, PdfBrushes.Black, New PointF(0, 0))
    'Save document to disk.
    document.Save("Output.pdf")
    'Close the document.
    document.Close(True)

    Fields

    Landscape

    Landscape orientation.

    Declaration
    public const PdfPageOrientation Landscape
    Field Value
    Type
    PdfPageOrientation

    Portrait

    Portrait orientation.

    Declaration
    public const PdfPageOrientation Portrait
    Field Value
    Type
    PdfPageOrientation

    See Also

    PdfDocument
    PdfPage
    PdfFont
    PdfPageSettings
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved