Save signed Spreadsheet with different output file type
Leave feedback
SignatureΒ class supports saving of Spreadsheet signed documents with different output file types. Each document type has list of compatible saving type. These values are listed in enumΒ SpreadsheetSaveFileFormat.
Here are the steps to save signed Spreadsheet document to different output type with GroupDocs.Signature:
Create new instance ofΒ SignatureΒ class and pass source document path or stream as a constructor parameter.
Instantiate required signature options.
Instantiate theΒ SpreadsheetSaveOptionsΒ object according to your requirements and specifyΒ FileFormatΒ as one of predefined values fromΒ SpreadsheetSaveFileFormat.
CallΒ SignΒ method ofΒ Signature class instance and pass signatureoptions andΒ SpreadsheetSaveOptionsΒ objectΒ to it.
Following example demonstrates how to save signed Spreadsheet document with different output type
using (Signature signature = new Signature("sample.xlsx"))
{
// create QRCode option with predefined QRCode text
QrCodeSignOptions signOptions = new QrCodeSignOptions("JohnSmith")
{
// setup QRCode encoding type
EncodeType = QRCodeTypes.QR,
// set signature position
Left = 100,
Top = 100
};
SpreadsheetSaveOptions saveOptions = new SpreadsheetSaveOptions()
{
FileFormat = SpreadsheetSaveFileFormat.Pdf,
OverwriteExistingFiles = true
};
// sign document to file
signature.Sign("SignedXlsx.pdf", signOptions, saveOptions);
}
You may easily run the code above and see the feature in action in ourΒ GitHub examples:
- GroupDocs.Signature for .NET examples, plugins, and showcase
- GroupDocs.Signature for Java examples, plugins, and showcase
- Document Signature for .NET MVC UI Example
- Document Signature for .NET App WebForms UI Example
- Document Signature for Java App Dropwizard UI Example
- Document Signature for Java Spring UI Example
Along with the full-featured .NET library, we provide simple but powerful free online apps.
To sign PDF, Word, Excel, PowerPoint, and other documents you can use the online apps from the GroupDocs.Signature App Product Family.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.