email property

email property

Gets and sets the email of singer.

Example

from aspose.cells.drawing import SignatureLine

#  Create signature line object
s5 = SignatureLine()
s5.email = "Simon.Zhao@aspose.com"

Definition:

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

See Also