PowerPoint API handling PPT sections

조회 수: 9 (최근 30일)
Andreas
Andreas 2023년 2월 10일
댓글: Andreas 2023년 2월 21일
But came to a different conclusion.
Upon inserting a new slide at index 2, that slide becomes the header of section 2, instead of a content slide for section1.
How can I insert slides into specific sections on a powerpoint? Currently, the slide just replace the last header of section2 when inserted into section1.
Dummy1.pptx
NewTest.pptx
CODE
%-------------------------------------------------------------------------
% Without below code would have: "mlreportgen.ppt.Presentation"
import mlreportgen.ppt.*;
% %-------------------------------------------------------------------------
%-------------------------------------------------------------------------
% Create Histogrm
x = randn(10000,1);
h = histogram(x);
saveas(gcf,'myPlot_img.png');
plot1 = Picture('myPlot_img.png');
%-------------------------------------------------------------------------
%-------------------------------------------------------------------------
% to open again and then add a slide
ppt = Presentation('NewTest.pptx','Dummy1.pptx');
open(ppt);
x =1;
newSlide = outputPPT(ppt,x,plot1);
close(ppt);
rptview(ppt);
function Return = outputPPT(ppt,x,plot1)
import mlreportgen.ppt.*;
newSlide = add(ppt,'Picture with Caption',x+1);
replace(newSlide,'Title 1','Histogram of Vector');
replace(newSlide,'Picture Placeholder 2',plot1);
newSlide = add(ppt,'Picture with Caption',x+3);
Return = newSlide;
end
END

답변 (1개)

HimeshNayak
HimeshNayak 2023년 2월 17일
Hi Andreas,
As per my understanding, you want to add slides to a specific section using “mlreportgen.ppt.*”. Currently the API does not support the functionality. The responsible teams are already working on the feature.
Regards,
HimeshNayak
  댓글 수: 1
Andreas
Andreas 2023년 2월 21일
Thank you HimeshNayak,
Was that always the case? Rahul posted that mlreportgen.ppt.* cannot create sections but it can add slides to sections that already exist. See here: How to add sections to PowerPoint with MATLAB Report Generator - MATLAB Answers - MATLAB Central (mathworks.com)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Create Complete PowerPoint Presentations에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by