SignatureLine

SignatureLine class

Representa la línea de la firma.

public class SignatureLine

Constructores

NombreDescripción
SignatureLine()Constructor predeterminado

Propiedades

NombreDescripción
AllowComments { get; set; }Indica si se pueden adjuntar comentarios.
Email { get; set; }Obtiene y configura el correo electrónico del cantante.
Id { get; set; }Obtiene o establece el identificador para esta línea de firma.
Instructions { get; set; }Obtiene y establece el texto que se muestra al usuario en el momento de la firma.
IsLine { get; set; }Indica si se trata de una línea de firma.
ProviderId { get; set; }Obtiene y establece la identificación del proveedor de la firma.
ShowSignedDate { get; set; }Indica si mostrar fecha de firma.
Signer { get; set; }Obtiene y establece el firmante.
Title { get; set; }Obtiene y establece el título del cantante.

Ejemplos


[C#]

// Instanciando un objeto Workbook
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets[0];

//Añadiendo una imagen
int imgIndex = worksheet.Pictures.Add(1, 1, "sample.png");
Picture pic = worksheet.Pictures[imgIndex];
// Crear objeto de línea de firma
SignatureLine s = new SignatureLine();
s.Signer = "Simon Zhao";
s.Title = "Development Lead";
s.Email = "Simon.Zhao@aspose.com";
// Asignar el objeto de línea de firma a la propiedad Picture.SignatureLine
pic.SignatureLine = s;

//haz tu negocio

//Guardar el archivo de Excel.
workbook.Save("result.xlsx");

Ver también