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. |