How to add Header, Footer and Text to existing Slides? #926
Unanswered
ZubairImran
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Hello @ZubairImran, Text Shape: Yes, you can add text wherever you want by specifying var pres = new Presentation();
var shapeCollection = pres.Slide(1).Shapes;
shapeCollection.AddShape(x: 100, y: 50, width: 100, height: 100);
var addedShape = shapeCollection.Last();
addedShape.Text = "Hello, World!"; Footer: Currently, only slide number content for the footer is supported: var pres = new Presentation();
pres.Footer.AddSlideNumber(); Header: If I'm correctly understood, Header is the subject of the Notes and Handouts, not the regular slide: Please correct me if you mentioned another. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi @ashahabov ,
Does ShapeCrawler support for adding header and Footer Text also allow Text insertion in existing Slide?. Any hint would be helpful.
In the existing slide can i add text anywhere in the slide?
Thanks
Hyder
Beta Was this translation helpful? Give feedback.
All reactions