Skip to content

Instantly share code, notes, and snippets.

@AJP4
Created March 27, 2018 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AJP4/014c639bf555f396b64522bcf46c117b to your computer and use it in GitHub Desktop.
Save AJP4/014c639bf555f396b64522bcf46c117b to your computer and use it in GitHub Desktop.
Timeline and Diamonad
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Step 1"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [],
"source": [
"import win32com.client\n",
"from MSOconstants.MSO import constants as MSO\n",
"from MSOconstants.MSPPT import constants as MSPPT"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Step 2"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"pptApp= win32com.client.gencache.EnsureDispatch (\"Powerpoint.Application\")\n",
"presentation = pptApp.Presentations.Add()\n",
"slide = presentation.Slides.Add(1, MSPPT.ppLayoutBlank)\n",
"myDiamond = slide.Shapes.AddShape(MSO.msoShapeDiamond, Top=100,Left=100, Width=20, Height=20)\n",
"presentation.SaveAs(\"_myPowerPoint\", MSPPT.ppSaveAsPresentation)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Step 3"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [],
"source": [
"width=presentation.PageSetup.SlideWidth"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Step 4"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [],
"source": [
"RRect = slide.Shapes.AddShape(MSO.msoShapeRoundedRectangle, 0, 50, 960, 10)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Step 5"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [],
"source": [
"myDiamond.Left=960/4\n",
"myDiamond.Top = 50-10/2"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python (jupyerLab)",
"language": "python",
"name": "jupyterlab"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.4"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment