XfdfReader Class |
Namespace: Aspose.Pdf.Annotations
The XfdfReader type exposes the following members.
Name | Description | |
---|---|---|
![]() | XfdfReader | Initializes a new instance of the XfdfReader class |
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() ![]() | GetElements |
Parses XFDF file and returns information as hashtable.
|
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() ![]() | ReadAnnotations |
Import annotations from XFDF file and put them into document.
|
![]() ![]() | ReadFields |
Import field values from XFDF file.
|
![]() | ToString | (Inherited from Object.) |
Document doc = new Document("example.pdf"); Stream xfdfStream = File.OpenRead("file.xfdf"); XfdfReader.ReadAnnotations(xfdfStream, doc); xfdfStream.Close(); doc.Save("example_out.pdf");