IsBackground

Stamp.IsBackground property

Hämtar eller ställer in bakgrundsstatus. Om sant stämpel kommer att placeras som bakgrund för den spampade sidan. Som standard är inställd på false.

public bool IsBackground { get; set; }

Exempel

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();

Se även