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
- Class Vector
- Class U16String
- Class SignatureLine
- Namespace Aspose::Cells::Drawing
- Library Aspose.Cells for C++
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
- Class Vector
- Class SignatureLine
- Namespace Aspose::Cells::Drawing
- Library Aspose.Cells for C++