How to add Header, Footer and Text to existing Slides? #926
-
Hi @ashahabov , Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 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.
Here you can find how to update font.