Aspose::Cells::Drawing::ShapeCollection::AddSignatureLine method
ShapeCollection::AddSignatureLine method
Adds a Signature Line to the worksheet.
Aspose::Cells::Drawing::Picture Aspose::Cells::Drawing::ShapeCollection::AddSignatureLine(int32_t upperLeftRow, int32_t upperLeftColumn, const SignatureLine &signatureLine)
Parameter | Type | Description |
---|---|---|
upperLeftRow | int32_t | Upper left row index. |
upperLeftColumn | int32_t | Upper left column index. |
signatureLine | const SignatureLine& | Represents a signature line object. |
ReturnValue
Examples
SignatureLine wSignatureLine;
wSignatureLine.SetAllowComments(true);
wSignatureLine.SetEmail(u"example@example.com");
wSignatureLine.SetInstructions(u"Sign to confirm the excel content.");
wSignatureLine.SetIsLine(true);
wSignatureLine.SetShowSignedDate(true);
wSignatureLine.SetSigner(u"User");
wSignatureLine.SetTitle(u"tester");
//wSignatureLine.SignatureLineType = SignatureType.Stamp;
Picture signatureLine1 = shapes.AddSignatureLine(0, 0, wSignatureLine);
See Also
- Class Picture
- Class Vector
- Class SignatureLine
- Class ShapeCollection
- Namespace Aspose::Cells::Drawing
- Library Aspose.Cells for C++