如何使用C#将MS Office 2013 power point演示文稿转换为html

时间:2016-05-26 14:50:16

标签: html .net html5 c#-4.0 powerpoint

我已经考虑过将MS office .ppt文件转换为使用带有MS office互操作库引用的c#的html,但我特别希望将.pptx文件转换为html。任何帮助都将受到高度赞赏。

1 个答案:

答案 0 :(得分:0)

您可以使用此VBA代码段

Sub SaveAsMHT()
  With ActivePresentation
    Call .SaveAs("c:\temp\SingleFile.mht",ppSaveAsWebArchive,false)
  End With
End Sub

信用:PPTFaq