I don't know if this will answer your question. One approach is to thicken the table line instead. Here is one possibility.
Code: Select all
\documentclass{article}
\usepackage{xcolor} % Added for using xcolor options
\usepackage{hyperref}
\newcommand{\Textfield}[3]{\TextField[name=#1,charsize=8pt,bordercolor={black},height=12pt,width=3cm,value=#2]{#3}}
\setlength{\arrayrulewidth}{1.1pt} % thicken the table line
\begin{document}
\begin{Form}
\begin{tabular}{|l@{}|}
\hline
\Textfield{textfield}{default}{Text}\\
\hline
\end{tabular}
\end{Form}
\end{document}
Still another approach is to set the border color to white, decrease the
pdflinkmargin
, and add columns to your table.
Code: Select all
\documentclass{article}
\usepackage{hyperref}
\hypersetup{pdflinkmargin=-0.5pt}
\newcommand{\Textfield}[3]{\TextField[name=#1,charsize=8pt,bordercolor={1 1 1},height=12pt,width=3cm,value=#2]{#3}}
\begin{document}
\begin{Form}
\begin{tabular}{|l|l@{}|}
\hline
Text & \Textfield{textfield}{default}{}\\
\hline
\end{tabular}
\end{Form}
\end{document}