I\'m a newbie in c# programming and I\'m just confounded by the entire ms office library. I want to copy a textbox from one slide 3 and paste it in slide 2. I followed instructi
In vba it, you'd do it like this:
ActivePresentation.Slides(2).Shapes(3).Copy ActivePresentation.Slides(3).Shapes.Paste
This'd copy the third shape on slide 2 to slide 3