Aspose::Cells::Drawing::SignatureLine::SetTitle method

SignatureLine::SetTitle(const U16String&) method

Gets and sets the title of singer.

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

Examples

// Create signature line object
U16String val = u"Development Lead";
SignatureLine s4;
if (s4.GetTitle().IsNull() || s4.GetTitle().IsEmpty())
{
    s4.SetTitle(val);
}

See Also

SignatureLine::SetTitle(const char16_t*) method

Gets and sets the title of singer.

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

Examples

// Create signature line object
SignatureLine s4;
if (s4.GetTitle().IsNull() || s4.GetTitle().IsEmpty())
{
    s4.SetTitle(u"Development Lead");
}

See Also