menu

UWP

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class Pdf3DProjectionType - UWP API Reference | Syncfusion

    Show / Hide Table of Contents

    Class Pdf3DProjectionType

    Specifies the available projection type of the 3D annotation.

    Inheritance
    System.Object
    Pdf3DProjectionType
    Namespace: Syncfusion.Pdf.Interactive
    Assembly: Syncfusion.Pdf.UWP.dll
    Syntax
    public sealed class Pdf3DProjectionType : Enum
    Examples
    //Create a new PDF document.
    PdfDocument document = new PdfDocument();
    //Create a new page .
    PdfPage page = document.Pages.Add();
    //Create a new rectangle
    RectangleF rectangle = new RectangleF(10, 40, 30, 30);
    //Create a new Pdf3DAnnotation.
    Pdf3DAnnotation annotation = new Pdf3DAnnotation(new RectangleF(10, 50, 300, 150), @"Input.u3d");
    //Create a new Pdf3DProjection.
    Pdf3DProjection projection = new Pdf3DProjection();
    projection.ProjectionType = Pdf3DProjectionType.Perspective;
    projection.FieldOfView = 10;
    projection.OrthoScaleMode = Pdf3DProjectionOrthoScaleMode.Width;
    projection.ClipStyle = Pdf3DProjectionClipStyle.ExplicitNearFar;
    projection.NearClipDistance = 10;
    //Create a new Pdf3DView
    Pdf3DView view = new Pdf3DView();
    view.CameraToWorldMatrix = new float[] { -0.382684f, 0.92388f, -0.0000000766026f, 0.18024f, 0.0746579f, 0.980785f, 0.906127f, 0.37533f, -0.19509f, -100, -112.432f, 45.6829f };
    view.Projection = projection;
    annotation.Views.Add(view);
    //Adds the annotation in a new page.
    page.Annotations.Add(annotation);
    //Save the document to disk.
    document.Save("Output.pdf");
    //close the document
    document.Close(true);
    'Create a new PDF document.
    Dim document As New PdfDocument()
    'Create a new page .
    Dim page As PdfPage = document.Pages.Add()
    'Create a new rectangle
    Dim rectangle As New RectangleF(10, 40, 30, 30)
    'Create a new Pdf3DAnnotation.
    Dim annotation As New Pdf3DAnnotation(New RectangleF(10, 50, 300, 150), "Input.u3d")
    'Create a new Pdf3DProjection.
    Dim projection As New Pdf3DProjection()
    projection.ProjectionType = Pdf3DProjectionType.Perspective
    projection.FieldOfView = 10
    projection.OrthoScaleMode = Pdf3DProjectionOrthoScaleMode.Width
    projection.ClipStyle = Pdf3DProjectionClipStyle.ExplicitNearFar
    projection.NearClipDistance = 10
    'Create a new Pdf3DView
    Dim view As New Pdf3DView()
    view.CameraToWorldMatrix = New Single() { -0.382684F, 0.92388F, -7.66026E-08F, 0.18024F, 0.0746579F, 0.980785F, 0.906127F, 0.37533F, -0.19509F, -100, -112.432F, 45.6829F}
    view.Projection = projection
    annotation.Views.Add(view)
    'Adds the annotation in a new page.
    page.Annotations.Add(annotation)
    'Save the document to disk.
    document.Save("Output.pdf")
    'close the document
    document.Close(True)

    Fields

    Orthographic

    Represents Orthographic projection

    Declaration
    public const Pdf3DProjectionType Orthographic
    Field Value
    Type
    Pdf3DProjectionType

    Perspective

    Represents Perspective projection.

    Declaration
    public const Pdf3DProjectionType Perspective
    Field Value
    Type
    Pdf3DProjectionType

    Extension Methods

    DateTimeExtension.ToDateTime(Object)

    See Also

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