Link to home
Start Free TrialLog in
Avatar of Charles Baldo
Charles BaldoFlag for United States of America

asked on

Acrofield in PDF Needs to be bold

Need to set itextSharp Acrofields to bold

            string OutPage =  @"C:\PDF\S3.pdf";
            string pdfTemplate = @"C:\PDF\S2.pdf";
            PdfReader pdfReader = new PdfReader(pdfTemplate);
            PdfStamper pdfStamper = new PdfStamper(pdfReader, new FileStream(OutPage, FileMode.Create));

            af.SetField("V1", "1");

            af.SetFieldProperty(   <<<<<< Need bold
ASKER CERTIFIED SOLUTION
Avatar of Chinmay Patel
Chinmay Patel
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Charles Baldo

ASKER

Perfect,

Just got back to this sorry for the delay
Perfect, thank you sorry for the delay, I pushed away from problem an returned back to day for solution
Hi Charles,

No problem at all. PDF manipulation with C# is very challenging ('cause the bugs, tricks involved with PDF not exactly a programming challenge) and one of my favorite troubleshooting area. :) So thanks for the opportunity.

Regards,
Chinmay.