Aspose::Cells::Drawing::SignatureLine::GetSigner method

SignatureLine::GetSigner method

Gets and sets the signer.

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

Examples

// Create signature line object
SignatureLine s3;
if (s3.GetSigner().IsNull() || s3.GetSigner().IsEmpty())
{
    s3.SetSigner(u"Mr xxx");
}

See Also