IsBackground

Stamp.IsBackground property

Ottiene o imposta lo stato in background. Se true stamp verrà posizionato come sfondo della pagina spammata. Per impostazione predefinita è impostato su false.

public bool IsBackground { get; set; }

Esempi

PdfFileStamp fileStamp = new PdfFileStamp("input.pdf", "output.pdf");
Stamp stamp = new Stamp();
stamp.BindLogo(new FormattedText("STAMP"));
stamp.IsBackground = true;
fileStamp.AddStamp(stamp);
fileStamp.Close();

Guarda anche