SpreadsheetBackgroundWatermarkOptions
SpreadsheetBackgroundWatermarkOptions class
透かしを背景としてスプレッドシート ワークシートに追加するときのオプションを表します。
public sealed class SpreadsheetBackgroundWatermarkOptions : SpreadsheetWatermarkOptions
コンストラクター
名前 | 説明 |
---|---|
SpreadsheetBackgroundWatermarkOptions() | の新しいインスタンスを初期化しますSpreadsheetBackgroundWatermarkOptions class. |
プロパティ
名前 | 説明 |
---|---|
BackgroundHeight { get; set; } | 背景画像の目的の高さをピクセル単位で取得または設定します。 |
BackgroundWidth { get; set; } | 背景画像の目的の幅をピクセル単位で取得または設定します。 |
WorksheetIndex { get; set; } | 透かしを追加するワークシートのインデックスを取得または設定します。 |
備考
もっと詳しく知る:
例
背景として Excel ドキュメント ワークシートにテキストの透かしを追加します。
SpreadsheetLoadOptions loadOptions = new SpreadsheetLoadOptions();
using (Watermarker watermarker = new Watermarker(@"C:\Documents\test.xlsx", loadOptions))
{
TextWatermark watermark = new TextWatermark("Test watermark", new Font("Arial", 36));
SpreadsheetBackgroundWatermarkOptions options = new SpreadsheetBackgroundWatermarkOptions();
options.WorksheetIndex = -1; // デフォルト
options.BackgroundWidth = 800;
options.BackgroundHeight = 600;
watermarker.Add(watermark, options);
watermarker.Save();
}