필터 지우기
필터 지우기

power point - active x control

조회 수: 21 (최근 30일)
Jeffrey Schlang
Jeffrey Schlang 2017년 2월 2일
댓글: Jeffrey Schlang 2017년 2월 7일
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
Jeffrey Schlang
Jeffrey Schlang 2017년 2월 7일
Ok ... thanks that works Now the power point 2013 has 2 sections in the master slides. I need to apply the 2nd section. Is there a way to do that or to insert the slide from the 2nd section?

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

답변 (2개)

Ankitha Kollegal Arjun
Ankitha Kollegal Arjun 2017년 2월 6일
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
Image Analyst 2017년 2월 6일

카테고리

Help CenterFile Exchange에서 MATLAB Report Generator에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by