Aspose::Cells::Drawing::SignatureLine::SetEmail method
SignatureLine::SetEmail(const U16String&) method
Gets or sets the email of singer.
void Aspose::Cells::Drawing::SignatureLine::SetEmail(const U16String &value)
Examples
// Create signature line object
U16String val = u"Simon.Zhao@aspose.com";
SignatureLine s5;
if (s5.GetEmail().IsNull() || s5.GetEmail().IsEmpty())
{
s5.SetEmail(val);
}
See Also
- Class Vector
- Class U16String
- Class SignatureLine
- Namespace Aspose::Cells::Drawing
- Library Aspose.Cells for C++
SignatureLine::SetEmail(const char16_t*) method
Gets or sets the email of singer.
void Aspose::Cells::Drawing::SignatureLine::SetEmail(const char16_t *value)
Examples
// Create signature line object
SignatureLine s5;
if (s5.GetEmail().IsNull() || s5.GetEmail().IsEmpty())
{
s5.SetEmail(u"Simon.Zhao@aspose.com");
}
See Also
- Class Vector
- Class SignatureLine
- Namespace Aspose::Cells::Drawing
- Library Aspose.Cells for C++