Column Settings #167
Answered
by
anmcgrath
parker-dean
asked this question in
Q&A
-
How am I able to set the width of columns and width of the table? Tried searching source code and using the following: sheet.Width = "100%"; sheet.Range("A1:A1").Format = new CellFormat() { Width = "200px" }; |
Beta Was this translation helpful? Give feedback.
Answered by
anmcgrath
Jan 10, 2025
Replies: 1 comment 1 reply
-
Hi @parker-dean you can use _sheet.Columns.SetSize(indexStart, indexEnd, sizeInPx); or _sheet.Columns.SetSize(index, sizeInPx); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
parker-dean
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @parker-dean you can use
or