Save signed Spreadsheet with different output file type
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);
}
More resources
GitHub Examples
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
Free Online App
Along with full-featured .NET library we provide simple, but powerful free Apps.
You are welcome to eSign PDF, Word, Excel, PowerPoint documents with free to use online GroupDocs Signature App.