Regarding the Actxserver spec

조회 수: 2 (최근 30일)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2015년 5월 13일
댓글: Gopalakrishnan venkatesan 2015년 5월 13일
open_file = Activate.Workbooks.Open(fullfile(pwd, 'DD.xlsx'),0,false)
In the above expression what does 0 and false indicates?
Thank you

채택된 답변

Guillaume
Guillaume 2015년 5월 13일
Assuming that before the line you've shown there is a line:
Activate = actxserver('Excel.Application'); %And what a misleading variable name!
Then Open is an excel function. The whole excel interface is very well detailed by Microsoft. For example, this is the page about Open. On there you learn, that
  • 0 means do not update link in the workbook
  • false means do not open workbook as readonly
Since these are the default values anyway, they could just as well be omitted. It would make more sense since none of the other optional values are specified:
open_file = Activate.Worbooks.Open(fullfile(pwd, 'DD.xlsx')); %would do the same.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Use COM Objects in MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by