在我的 Power Point 插件中,我正在使用此代码在幻灯片中加载 .svg 文件
Slide activeSlide = Globals.ThisAddIn.Application.ActiveWindow.View.Slide;
PowerPoint.Shape ppPicture = activeSlide.Shapes.AddPicture(testImageUrl, MsoTriState.msoTrue, MsoTriState.msoTrue, 0, 0);
ppPicture.LinkFormat.SourceFullName = testImageUrl;
然后我需要取消组合这个文件,就像单击鼠标右键并选择菜单点“转换为形状”时发生的那样。
ppPicture.Ungroup();
throws System.UnauthorizedAccessException: '这个成员只能被一个组访问。'
那么我该怎么做呢?