Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created January 6, 2023 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/72283aadf40e1a68bc6a9c6f5e0fdc43 to your computer and use it in GitHub Desktop.
Save bjoerntx/72283aadf40e1a68bc6a9c6f5e0fdc43 to your computer and use it in GitHub Desktop.
using (TXTextControl.ServerTextControl tx = new ServerTextControl()) {
tx.Create();
tx.Load("test.docx", TXTextControl.StreamType.WordprocessingML);
foreach (SignatureField field in tx.SignatureFields) {
Debug.WriteLine(JsonConvert.SerializeObject(field));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment