Add
DigitalSignatureCollection.Add method
Adds the signature at the end of collection.
public void Add(IDigitalSignature signature)
Parameter | Type | Description |
---|---|---|
signature | IDigitalSignature | Signature to add. |
Examples
[C#]
using (Presentation pres = new Presentation())
{
DigitalSignature signature = new DigitalSignature("testsignature1.pfx", @"testpass1");
signature.Comments = "Aspose.Slides digital signing test.";
pres.DigitalSignatures.Add(signature);
pres.Save("SomePresentationSigned.pptx", SaveFormat.Pptx);
}
See Also
- interface IDigitalSignature
- class DigitalSignatureCollection
- namespace Aspose.Slides
- assembly Aspose.Slides