WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Enum Pdf3DAnnotationType

    Show / Hide Table of Contents

    Enum Pdf3DAnnotationType

    Specifies the type of the 3D annotation.

    Namespace: Syncfusion.Pdf.Interactive
    Assembly: Syncfusion.Pdf.Base.dll
    Syntax
    public enum Pdf3DAnnotationType
    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 Pdf3D Annotation.
    Pdf3DAnnotation annotation = new Pdf3DAnnotation(new RectangleF(10, 50, 300, 150), @"Input.u3d");
    //Create a new Pdf3DActivation.
    Pdf3DActivation activation = new Pdf3DActivation();
    activation.DeactivationState = Pdf3DDeactivationState.Uninstantiated;
    //Set the activation to the annotation.
    annotation.Activation = activation;
    annotation.Type = Pdf3DAnnotationType.U3D;
    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 Pdf3D Annotation.
    Dim annotation As New Pdf3DAnnotation(New RectangleF(10, 50, 300, 150), "Input.u3d")
    'Create a new Pdf3DActivation.
    Dim activation As New Pdf3DActivation()
    activation.DeactivationState = Pdf3DDeactivationState.Uninstantiated
    //Set the activation to the annotation.
    annotation.Activation = activation
    annotation.Type = Pdf3DAnnotationType.U3D
    page.Annotations.Add(annotation)
    'Save the document to disk.
    document.Save("Output.pdf")
    'close the document
    document.Close(True)

    Fields

    Name Description
    PRC

    Represents PRC

    U3D

    Represents U3D

    See Also
    PdfDocument
    PdfPage
    Pdf3DAnnotation
    Pdf3DActivation
    Pdf3DAnnotationType
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved