Aspose::Cells::Drawing::SignatureLine::SetEmail method

SignatureLine::SetEmail(const U16String&) method

Gets and 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

SignatureLine::SetEmail(const char16_t*) method

Gets and 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