SpreadsheetWatermarkShapeOptions

SpreadsheetWatermarkShapeOptions class

Rappresenta le opzioni quando si aggiunge una filigrana di forma a un foglio di lavoro di un foglio di calcolo.

public sealed class SpreadsheetWatermarkShapeOptions : SpreadsheetWatermarkBaseOptions

Costruttori

Nome Descrizione
SpreadsheetWatermarkShapeOptions() Inizializza una nuova istanza diSpreadsheetWatermarkShapeOptions classe.

Proprietà

Nome Descrizione
AlternativeText { get; set; } Ottiene o imposta il testo descrittivo (alternativo) che verrà associato a una forma.
Effects { get; set; } Ottiene o imposta un valore diSpreadsheetImageEffects o SpreadsheetTextEffects per gli effetti da applicare alla filigrana.
IsLocked { get; set; } Ottiene o imposta un valore che indica se è vietata la modifica della forma in Excel.
Name { get; set; } Ottiene o imposta il nome una forma.
WorksheetIndex { get; set; } Ottiene o imposta l’indice del foglio di lavoro a cui aggiungere la filigrana.

Osservazioni

Saperne di più:

Esempi

Aggiungi filigrana a un particolare foglio di lavoro di un documento Excel.

SpreadsheetLoadOptions loadOptions = new SpreadsheetLoadOptions();
using (Watermarker watermarker = new Watermarker(@"C:\Documents\test.xls", loadOptions))
{
    TextWatermark watermark = new TextWatermark("Test watermark", new Font("Arial", 36, FontStyle.Bold | FontStyle.Italic));
    watermark.HorizontalAlignment = HorizontalAlignment.Center;
    watermark.VerticalAlignment = VerticalAlignment.Center;

    SpreadsheetWatermarkShapeOptions options = new SpreadsheetWatermarkShapeOptions();
    options.WorksheetIndex = 0;

    watermarker.Add(watermark, options);
    watermarker.Save();
}

Guarda anche