I have a Powerpoint presentation which contains 3 slides. Each slide has a Textbox which is a place holder. I would like to replace the Textbox contents on one slide.
I need to know how to do this using C# and OpenXML
Thanks a ton
I have a Powerpoint presentation which contains 3 slides. Each slide has a Textbox which is a place holder. I would like to replace the Textbox contents on one slide.
I need to know how to do this using C# and OpenXML
Thanks a ton
Copyright © 2021 Jogjafile Inc.
Do this for each slide, you want to change:
Keep in mind, that if your template's placeholders contain spaces, this may create two individual run elements. So instead of one run element with run.Text of "Place holder", you might get one run with run.text of "Place" and another one with run.Text "holder".