اگر فقط کادر بیرونی موردنظر است از دستورات \vrule width Xpt
و \noalign{\hrule height Xpt}
مربوط به بسته array
استفاده کنید. با تغییر X
میتوانید ضخامت را تغییر دهید:
\documentclass[12pt]{article}
\usepackage[labelfont=bf]{caption}
\usepackage{array}
\usepackage{xepersian}
\settextfont{Yas}
\setdigitfont{Yas}
\begin{document}
\begin{table}
\caption{جدول اعداد بزرگتر از ۵۰}
\centering
\begin{tabular}{!{\vrule width 1pt}c|c!{\vrule width 1pt}}
\noalign{\hrule height 1pt}
100 & 200 \\
\hline
500 & 700 \\
\noalign{\hrule height 1pt}
\end{tabular}
\end{table}
\end{document}