menu

WPF

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Enum AnnotationDataFormat - WPF API Reference | Syncfusion

    Show / Hide Table of Contents

    Enum AnnotationDataFormat

    Specifies the format of Export or Import annotation data.

    Namespace: Syncfusion.Pdf.Parsing
    Assembly: Syncfusion.Pdf.Base.dll
    Syntax
    public enum AnnotationDataFormat
    Examples
    //Load an existing document
    PdfLoadedDocument ldoc = new PdfLoadedDocument("Input.pdf");
    // Export the annotation data as FDF file
    ldoc.ExportAnnotations("Export.fdf", AnnotationDataFormat.Fdf, "Input.pdf");
    // Close the document
    ldoc.Close(true);
    'Load an existing document
    Dim ldoc As PdfLoadedDocument = New PdfLoadedDocument("Input.pdf")
    ' Export the annotation data as FDF file
    ldoc.ExportAnnotations("Export.fdf", AnnotationDataFormat.Fdf, "Input.pdf")
    ' Close the document
    ldoc.Close(true)

    Fields

    Name Description
    Fdf

    Specifies Forms Data Format file format

    Json

    Specifies JSON file format.

    XFdf

    Specifies XFDF file format.

    See Also
    PdfLoadedDocument
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved