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

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