This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // For complete examples and data files, please go to https://github.com/groupdocs-signature/GroupDocs.Signature-for-.NET | |
| // setup Signature configuration | |
| SignatureConfig signConfig = Utilities.GetConfigurations(); | |
| // instantiating the conversion handler | |
| SignatureHandler handler = new SignatureHandler(signConfig); | |
| // setup search options | |
| PdfSearchQRCodeOptions searchOptions = new PdfSearchQRCodeOptions(); | |
| // specify as true to search all pages of a document | |
| searchOptions.SearchAllPages = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // For complete examples and data files, please go to https://github.com/groupdocs-signature/GroupDocs.Signature-for-.NET | |
| // setup Signature configuration | |
| SignatureConfig signConfig = Utilities.GetConfigurations(); | |
| // instantiating the signature handler | |
| SignatureHandler handler = new SignatureHandler(signConfig); | |
| // Setup Email object | |
| Email email = new Email() | |
| { | |
| Address = "watson@sherlockholmes.com", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // For complete examples and data files, please go to https://github.com/groupdocs-signature/GroupDocs.Signature-for-.NET | |
| // setup Signature configuration | |
| SignatureConfig signConfig = Utilities.GetConfigurations(); | |
| // instantiating the signature handler | |
| SignatureHandler handler = new SignatureHandler(signConfig); | |
| // Setup VCard object | |
| VCard vcard = new VCard() | |
| { | |
| FirstName = "Sherlock", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // For complete examples and data files, please go to https://github.com/groupdocs-signature/GroupDocs.Signature-for-.NET | |
| // setup Signature configuration | |
| SignatureConfig signConfig = Utilities.GetConfigurations(); | |
| // instantiating the signature handler | |
| SignatureHandler handler = new SignatureHandler(signConfig); | |
| // setup custom object instance with required data | |
| DocumentSignature docSignature = new DocumentSignature() | |
| { | |
| ID = Guid.NewGuid().ToString(), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //For complete examples and data files, please go to https://github.com/groupdocs-signature/GroupDocs.Signature-for-.NET | |
| // setup Signature configuration | |
| SignatureConfig signConfig = Utilities.GetConfigurations(); | |
| // instantiating the conversion handler | |
| SignatureHandler handler = new SignatureHandler(signConfig); | |
| // setup options with text of signature | |
| CellsSignTextOptions signOptions = new CellsSignTextOptions("John Smith"); | |
| // text position | |
| signOptions.RowNumber = 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //For complete examples and data files, please go to https://github.com/groupdocs-signature/GroupDocs.Signature-for-.NET | |
| // setup Signature configuration | |
| SignatureConfig signConfig = Utilities.GetConfigurations(); | |
| // instantiating the conversion handler | |
| SignatureHandler handler = new SignatureHandler(signConfig); | |
| // setup options with text of signature | |
| CellsSignTextOptions signOptions = new CellsSignTextOptions("John Smith"); | |
| // text position | |
| signOptions.RowNumber = 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //For complete examples and data files, please go to https://github.com/groupdocs-signature/GroupDocs.Signature-for-.NET | |
| // setup Signature configuration | |
| SignatureConfig config = Utilities.GetConfigurations(); | |
| // instantiating the signature handler | |
| var handler = new SignatureHandler(config); | |
| // Specify Signature Options collection | |
| SignatureOptionsCollection collection = new SignatureOptionsCollection(); | |
| // setup first text signature options |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //For complete examples and data files, please go to https://github.com/groupdocs-signature/GroupDocs.Signature-for-.NET | |
| // setup Signature configuration | |
| SignatureConfig config = Utilities.GetConfigurations(); | |
| // instantiating the signature handler | |
| var handler = new SignatureHandler(config); | |
| // setup digital signature options with image appearance | |
| CellsSignDigitalOptions signOptions = new CellsSignDigitalOptions("acer.pfx", "signature.jpg"); | |
| signOptions.Signature.Comments = "Test comment"; | |
| signOptions.Signature.SignTime = DateTime.Now; | |
| signOptions.Password = ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //For complete examples and data files, please go to https://github.com/groupdocs-signature/GroupDocs.Signature-for-.NET | |
| // setup Signature configuration | |
| SignatureConfig config = Utilities.GetConfigurations(); | |
| // instantiating the signature handler | |
| var handler = new SignatureHandler(config); | |
| // setup digital signature options with image appearance | |
| WordsSignDigitalOptions signOptions = new WordsSignDigitalOptions("acer.pfx", "signature.jpg"); | |
| signOptions.Signature.Comments = "Test comment"; | |
| signOptions.Signature.SignTime = DateTime.Now; | |
| signOptions.Password = ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // For complete examples and data files, please go to https://github.com/groupdocs-signature/GroupDocs.Signature-for-Java | |
| // setup Signature configuration | |
| SignatureConfig signConfig = CommonUtilities.getConfiguration(); | |
| // instantiating the conversion handler | |
| SignatureHandler<String> handler = new SignatureHandler<String>(signConfig); | |
| // setup options | |
| WordsStampSignOptions signOptions = new WordsStampSignOptions(); | |
| signOptions.setHeight(300); | |
| signOptions.setWidth(300); |
NewerOlder