Class XfdfReader

XfdfReader class

Класс, который выполняет чтение формата XFDF.

public sealed class XfdfReader

Constructors

NameDescription
XfdfReader()Конструктор по умолчанию.

Methods

NameDescription
static GetElements(XmlReader)Парсит файл XFDF и возвращает информацию в виде хеш-таблицы.
static ReadAnnotations(Stream, Document)Импортирует аннотации из файла XFDF и добавляет их в документ.
static ReadFields(Stream, Document)Импортирует значения полей из файла XFDF.

Examples

Document doc = new Document("example.pdf");
Stream xfdfStream = File.OpenRead("file.xfdf");
XfdfReader.ReadAnnotations(xfdfStream, doc);
xfdfStream.Close();
doc.Save("example_out.pdf");

See Also