C
Clifton Ivey
I have a table I added via VBA like this:
set oTable = ActivePresentation.Slides("mySlide").Shapes.AddTable(...)
I then add some cells to it by:
oTable.Cell(...).Shape.TextFrame.TextRange.Text = "some text"
However, I cannot get a handle on these cells to update the font, fill, etc.
What is the best way to do this?
set oTable = ActivePresentation.Slides("mySlide").Shapes.AddTable(...)
I then add some cells to it by:
oTable.Cell(...).Shape.TextFrame.TextRange.Text = "some text"
However, I cannot get a handle on these cells to update the font, fill, etc.
What is the best way to do this?