title property

title property

Gets and sets the title of singer.

Example

from aspose.cells.drawing import SignatureLine

#  Create signature line object
s4 = SignatureLine()
s4.title = "Development Lead"

Definition:

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

See Also