#24 start adding classes for the acroform api

This commit is contained in:
Eliot Jones
2019-01-01 17:44:46 +00:00
parent 52b925489e
commit 20e843f5ae
9 changed files with 233 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
namespace UglyToad.PdfPig.AcroForms
{
using System;
/// <summary>
/// Specifies document level characteristics for any signature fields in the document's <see cref="AcroForm"/>.
/// </summary>
[Flags]
internal enum SignatureFlags
{
/// <summary>
/// The document contains at least one signature field.
/// </summary>
SignaturesExist = 1 << 0,
/// <summary>
/// The document contains signatures which may be invalidated if the file is saved
/// in a way which alters its previous content rather than simply appending new content.
/// </summary>
AppendOnly = 1 << 1
}
}