power point - active x control
Mostrar comentarios más antiguos
Hello
1) is there a way using active-x to open a power point template? 2) How do I create a power point document that is standard 4:3 dimensions? currently it opens in the wide mode?
1 comentario
Jeffrey Schlang
el 7 de Feb. de 2017
Respuestas (2)
Ankitha Kollegal Arjun
el 6 de Feb. de 2017
You can use the following snippet of code to open a PowerPoint template using ActiveX server:
ppt = actxserver('PowerPoint.Application');
ppt.Visible = 1;
get(ppt);
new_ppt = ppt.Presentations;
invoke(new_ppt);
x = Add(new_ppt);
To specify the dimensions, you could use any of the following:
ppt.Left = value;
ppt.Top = value;
ppt.Width = value;
ppt.Height = value;
Image Analyst
el 6 de Feb. de 2017
0 votos
Did you search the Answers forum: http://www.mathworks.com/matlabcentral/answers/?term=tag%3A%22powerpoint%22
Categorías
Más información sobre ActiveX en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!