Thread: [Solved] Column padding not taking
View Single Post
 
Old 12-20-2024, 05:00 PM
DavidPaul DavidPaul is offline Windows 11 Office 2013
Novice
 
Join Date: Oct 2023
Posts: 9
DavidPaul is on a distinguished road
Default

Quote:
Originally Posted by Italophile View Post
Probably because Column does not have a LeftPadding or RightPadding property. You’ll need to loop through the Cells collection of the column.
Apologies, I put the wrong code in. It should have been:
Code:
thisTable.LeftPadding = CentimetersToPoints(0.1)
thisTable.RightPadding = CentimetersToPoints(0.1)
...which I presumed would ripple down to the cell level. Is that not so?
Reply With Quote