0

using the windows 7 fax service, or any other faxing library in c#,

is it possible to set a watermark or a background picture to the fax document Im generating ?

I have some tab delimited text files (multi-pages reports) i need to fax them with a giving background template.

Hassen
  • 860
  • 2
  • 11
  • 23

1 Answers1

1

I haven't used FAX COM API, however, in any .NET application every control has a OnPrint event which you could override and apply watermarks etc.

James
  • 80,725
  • 18
  • 167
  • 237
  • The OnPaint method has PaintEventArgs which will give you access to the Graphics class. Use that to edit the print document it has methods like DrawImage/DrawString. – James Nov 30 '09 at 13:43