Add a blank slide to the Presentation (layout index 6 is typically blank). :param prs: The Presentation object to add a slide to. :return: The newly added slide object.
(prs)
| 1276 | return prs |
| 1277 | |
| 1278 | def add_blank_slide(prs): |
| 1279 | """ |
| 1280 | Add a blank slide to the Presentation (layout index 6 is typically blank). |
| 1281 | |
| 1282 | :param prs: The Presentation object to add a slide to. |
| 1283 | :return: The newly added slide object. |
| 1284 | """ |
| 1285 | blank_layout = prs.slide_layouts[6] |
| 1286 | return prs.slides.add_slide(blank_layout) |
| 1287 | |
| 1288 | def shape_fill_color(shape, fill_color): |
| 1289 | """ |
no outgoing calls
no test coverage detected