https://msdn.microsoft.com/EN-US/library/office/cc850834.aspxに従って、プレゼンテーションに新しいスライドを挿入しようとしていました。
エラーがスローされます:アーカイブファイルはサイズ0にすることはできません
私のコード:
string presentationFile=@"C:\Users\SS\Desktop\TestPresentation6.pptx";
public static void InsertNewSlide(string presentationFile, int position, string slideTitle)
{
using (PresentationDocument presentationDocument = PresentationDocument.Open(presentationFile, true))
{
// Pass the source document and the position and title of the slide to be inserted to the next method.
InsertNewSlide(presentationDocument, position, slideTitle);
}
}
オープン XML SDK 2.5 を使用しています。このエラーが何を示しているかを理解するのを手伝ってくれる人はいますか。有用な解決策が見つかりませんでした。誰も同じ問題に直面していましたか?
お時間を大切に!!
ありがとう!!!