You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I generated a docx document and inserted a table with 4 rows and 4 columns in the document. Each cell contains content, but some of the content is causing the width of the table columns to expand significantly. I tried to control the width using percentage settings, but it was ineffective. What should I do?
I generated a docx document and inserted a table with 4 rows and 4 columns in the document. Each cell contains content, but some of the content is causing the width of the table columns to expand significantly. I tried to control the width using percentage settings, but it was ineffective. What should I do?
cell2 := row.AddCell()
//cell2.Properties().SetWidthPercent(20)
cell2.Properties().SetWidth(250)
reqCell2 := cell2.AddParagraph().AddRun()
reqCell2.AddText(v8.Type)
reqCell2.Properties().SetSize(11)
The text was updated successfully, but these errors were encountered: