Я пытаюсь добавить абзац в ячейку таблицы с центром, но это не работает. Я провожу много исследований в Интернете, а также в стеке, но не повезло. 1. Попробуй добавить центр с помощью Justification и добавить в абзац, не получилось 2. Попробуй добавить центр с помощью Justification и добавить в RunProperties тоже не сово Вот мой код, написанный на vb.net
Function SetFormatHeaderText(txt) As Paragraph
Dim prg As Paragraph = New Paragraph()
Dim run As New Run()
Dim t As Text = New Text(txt)
Dim rPr As RunProperties = New RunProperties()
Dim fSize As FontSize = New FontSize() With {.Val = "22"}
Dim fName As RunFonts = New RunFonts With {.Ascii = "Calibri"}
'Dim jf As Justification = New Justification With {.Val = JustificationValues.Center}
Dim b As Bold = New Bold()
'rPr.Append(jf)
'prg.AppendChild(Of Justification)(New Justification() With {.Val = JustificationValues.Center})
rPr.Append(fSize)
rPr.Append(fName)
rPr.Append(b)
run.Append(rPr)
run.Append(t)
prg.Append(run)
Return prg
End Function
Вот вывод для rpt.Append (jf) Дата выпуска