instructions property

instructions property

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

Example

from aspose.cells.drawing import SignatureLine

#  Create signature line object
s6 = SignatureLine()
s6.instructions = "Just do it."

Definition:

@property
def instructions(self):
    ...
@instructions.setter
def instructions(self, value):
    ...

See Also