スライドに追加してウェーブファイルのアニメーション設定を変更
しようとしているアドオンPowerPoint2007
を使用して開発しています。この問題は、ウェーブ ファイル シェイプのメンバー属性を変更し、スライドのアニメーション効果の一部を削除すると発生します。この動作は非常に奇妙です。PlaySettings のメンバー属性を変更した後、一部のアニメーション効果が削除された理由がわかりません。VSTO(Visual Studio Tools for Office)
wavfile
AnimationSettings.PlaySettings's
コード:
Shape s = Globals.ThisAddIn.Application.ActivePresentation.Slides[slideIndex].Shapes.AddMediaObject(wavFilePath, 0f, 0f);
s.Left = DEFAULT_LEFT_POS;
// If the below code run, some of animation effect are deleted.
s.AnimationSettings.Animate = Microsoft.Office.Core.MsoTriState.msoTrue;
s.AnimationSettings.AdvanceMode = PpAdvanceMode.ppAdvanceOnTime;
s.AnimationSettings.AnimationOrder = 0;
s.AnimationSettings.PlaySettings.PauseAnimation = Microsoft.Office.Core.MsoTriState.msoFalse;
s.AnimationSettings.PlaySettings.PlayOnEntry = Microsoft.Office.Core.MsoTriState.msoTrue;
誰でも私を助けることができますか?