Aspose::Cells::Drawing::SignatureLine::GetInstructions method

SignatureLine::GetInstructions method

Gets and sets the text shown to user at signing time.

U16String Aspose::Cells::Drawing::SignatureLine::GetInstructions()

Examples

    // Create signature line object
SignatureLine s6;
if (s6.GetInstructions().IsNull() || s6.GetInstructions().IsEmpty())
{
    s6.SetInstructions(u"Just do it.");
}

See Also