BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Its urgent please Help.
//Loads the input PDF.
PdfLoadedDocument ldoc = new PdfLoadedDocument(ms);
//Get the PdfLoadedSignature Field.
PdfLoadedSignatureField field = ldoc.Form.Fields[0] as PdfLoadedSignatureField;
//Set the tool tip of the signature field.
field.ToolTip = "ToolTip";
MemoryStream outputstream = new MemoryStream();
//Save the PDF.
ldoc.Save(outputstream);
|