Aspose::Cells::Drawing::SignatureLine::GetEmail method

SignatureLine::GetEmail method

Gets and sets the email of singer.

U16String Aspose::Cells::Drawing::SignatureLine::GetEmail()

Examples

// Create signature line object
SignatureLine s5;
if (s5.GetEmail().IsNull() || s5.GetEmail().IsEmpty())
{
    s5.SetEmail(u"Simon.Zhao@aspose.com");
}

See Also