Save the current Presentation object to disk. :param prs: The Presentation object. :param file_name: The file path/name for the saved pptx file.
(prs, file_name="poster.pptx")
| 1792 | _set_run_font_color(run, color) |
| 1793 | |
| 1794 | def save_presentation(prs, file_name="poster.pptx"): |
| 1795 | """ |
| 1796 | Save the current Presentation object to disk. |
| 1797 | |
| 1798 | :param prs: The Presentation object. |
| 1799 | :param file_name: The file path/name for the saved pptx file. |
| 1800 | """ |
| 1801 | prs.save(file_name) |
| 1802 | |
| 1803 | def set_slide_background_color(slide, rgb=(255, 255, 255)): |
| 1804 | """ |
no test coverage detected