Aspose::Cells::Drawing::SignatureLine::SetInstructions method
SignatureLine::SetInstructions(const U16String&) method
Gets and sets the text shown to user at signing time.
void Aspose::Cells::Drawing::SignatureLine::SetInstructions(const U16String &value)
Examples
// Create signature line object
U16String val = u"Just do it.";
SignatureLine s6;
if (s6.GetInstructions().IsNull() || s6.GetInstructions().IsEmpty())
{
s6.SetInstructions(val);
}
See Also
- Class Vector
- Class U16String
- Class SignatureLine
- Namespace Aspose::Cells::Drawing
- Library Aspose.Cells for C++
SignatureLine::SetInstructions(const char16_t*) method
Gets and sets the text shown to user at signing time.
void Aspose::Cells::Drawing::SignatureLine::SetInstructions(const char16_t *value)
Examples
// Create signature line object
SignatureLine s6;
if (s6.GetInstructions().IsNull() || s6.GetInstructions().IsEmpty())
{
s6.SetInstructions(u"Just do it.");
}
See Also
- Class Vector
- Class SignatureLine
- Namespace Aspose::Cells::Drawing
- Library Aspose.Cells for C++