menu

Xamarin.iOS

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

    Show / Hide Table of Contents

    Class PdfPageRotateAngle

    The number of degrees by which the page should be rotated clockwise when displayed or printed.

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

    To know more details about document settings refer this link.

    Examples
    //Create a new PDF document.
    PdfDocument document = new PdfDocument();
    //Set rotation angle.
    document.PageSettings.Rotate = PdfPageRotateAngle.RotateAngle90;
    //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 to disk.
    document.Save("Output.pdf");
    //Close the document.
    document.Close(true);
    'Create a new PDF document.
    Dim document As PdfDocument = New PdfDocument()
    'Set rotation angle.
    document.PageSettings.Rotate = PdfPageRotateAngle.RotateAngle90
    '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 the document to disk.
    document.Save("Output.pdf")
    'Close the document.
    document.Close(True)

    Fields

    RotateAngle0

    The page is rotated as 0 angle.

    Declaration
    public const PdfPageRotateAngle RotateAngle0
    Field Value
    Type
    PdfPageRotateAngle

    RotateAngle180

    The page is rotated as 180 angle.

    Declaration
    public const PdfPageRotateAngle RotateAngle180
    Field Value
    Type
    PdfPageRotateAngle

    RotateAngle270

    The page is rotated as 270 angle.

    Declaration
    public const PdfPageRotateAngle RotateAngle270
    Field Value
    Type
    PdfPageRotateAngle

    RotateAngle90

    The page is rotated as 90 angle.

    Declaration
    public const PdfPageRotateAngle RotateAngle90
    Field Value
    Type
    PdfPageRotateAngle

    See Also

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