Hi,
I want to put a water mark in a report to the effect that 'Provisional Report', 'Interim Report' etc. and then remove this water mark when the report is made final. Is there any way, to implement this. Kindly help. Thanks in advance.
Prabhakar G Kammath
Watermarking
-
- Site Admin
- Posts: 17555
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Watermarking
Do you want to draw this text in a background? You can assign a background bitmap with this text, or you can use OnPagePrepaint event to draw it when printing (or exporting to PDF using third-party tools).
Re: Watermarking
Hi Sergey,
Thanks for the quick response. It will be enough if I can show this a an image, But can we remove that image once it is not required ?. I am also trying this out using printer drivers for PDF creation.
Regards,
Prabhakar G Kammath
Thanks for the quick response. It will be enough if I can show this a an image, But can we remove that image once it is not required ?. I am also trying this out using printer drivers for PDF creation.
Regards,
Prabhakar G Kammath
-
- Site Admin
- Posts: 17555
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Watermarking
You can remove background bitmap by assigning
RichViewEdit1.BackgroundBitmap := nil;
Or you can hide by assigning
RichViewEdit1.BackgroundStyle := bsNoBitmap;
RichViewEdit1.BackgroundBitmap := nil;
Or you can hide by assigning
RichViewEdit1.BackgroundStyle := bsNoBitmap;
Re: Watermarking
Thanks Sergy. I will try it out.
Regards
Prabhakar G Kammath
Regards
Prabhakar G Kammath