Stamp.IsBackground

Stamp.IsBackground property

Gets or sets background status. If true stamp will be placed as background of the spamped page. By default is set to false.

public bool IsBackground { get; set; }

Examples

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

See Also