0

I have to insert a bottom border on some fields in my pdf editable form.

I would like to insert a row without to do it manually for each field:

screenshot

I don't know which solution can help me to do this (a program like acrobat or foxit, an external library as itext sharp or abcpdf)

Have anyone some idea?

Thanks in advance

mkl
  • 90,588
  • 15
  • 125
  • 265
Jack
  • 1
  • 2
  • 1
    There are a number of tools that can help you here. One thing to note is that you can't add just a bottom border to the field itself. Borders on fields go all the way around. Instead, you'll use the location of the field rectangle to add a line to the page content itself making it appear that the field has a bottom border. What programming skills do you have and what PDF editing application or libraries do you own? – joelgeraci Jun 25 '19 at 14:50

1 Answers1

0

In Foxit PhantomPDF (which is paid software), you can open the Fields panel... enter image description here

...use Shift+Click to select all of the fields in the list...

enter image description here

...right-click on one of them and select Properties...

enter image description here

...then click on the Appearance tab, set "Line Style" to "Underline", and set the Thickness and Border Color as desired.

enter image description here

The result:

enter image description here

Brian Duddy
  • 343
  • 1
  • 11