SignatureLine clase

SignatureLine clase

Representa la línea de la firma.

El tipo SignatureLine expone los siguientes miembros:

Constructores

ConstructorDescripción
SignatureLine()Construye una nueva instancia de SignatureLine

Propiedades

PropiedadDescripción
idObtiene o establece el identificador de esta línea de firma.
provider_idObtiene y establece la identificación del proveedor de la firma.
signerObtiene y establece el firmante.
titleObtiene y establece el título de cantante.
emailObtiene y establece el correo electrónico del cantante.
is_lineIndica si se trata de una línea de firma.
allow_commentsIndica si se pueden adjuntar comentarios.
show_signed_dateIndica si muestra la fecha de firma.
instructionsObtiene y establece el texto que se muestra al usuario en el momento de la firma.

Ejemplo

from aspose.cells import Workbook
from aspose.cells.drawing import SignatureLine

# Instantiating a Workbook object
workbook = Workbook()
worksheet = workbook.worksheets[0]
# Adding a picture
imgIndex = worksheet.pictures.add(1, 1, "sample.png")
pic = worksheet.pictures[imgIndex]
#  Create signature line object
s = SignatureLine()
s.signer = "Simon Zhao"
s.title = "Development Lead"
s.email = "Simon.Zhao@aspose.com"
#  Assign the signature line object to Picture.SignatureLine property
pic.signature_line = s
# do your business
# Save the excel file.
workbook.save("result.xlsx")

Ver también