Aspose::Cells::Drawing::SignatureLine::SetSigner method

SignatureLine::SetSigner(const U16String&) method

Gets and sets the signer.

void Aspose::Cells::Drawing::SignatureLine::SetSigner(const U16String &value)

Examples

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

See Also

SignatureLine::SetSigner(const char16_t*) method

Gets and sets the signer.

void Aspose::Cells::Drawing::SignatureLine::SetSigner(const char16_t *value)

Examples

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

See Also