GetSigNum

Declaration

Delphi

function GetSigNum: Integer; stdcall;

ActiveX

HRESULT _stdcall GetSigNum([out, retval] long* Value);

Description

This function returns the number of signatures in the document.

  

Sample

C#
// Check how many signatures are found in the pdf
 
SignAPIv4.LoadDoc(@"C:\test\doc_signed.pdf");
 
int sigCount = SignAPIv4.GetSigNum(); 
 
MessageBox.Show(sigCount + " Signatures are found in the Document");