コード例 #1
0
ファイル: RibbonMenu.cs プロジェクト: Yellllllow/swb
 private void buttonInformation_Click(object sender, RibbonControlEventArgs e)
 {
     if (Globals.ThisAddIn.Application.ActivePresentation != null)
     {
         PowerPoint2010OfficeDocument document = new PowerPoint2010OfficeDocument(Globals.ThisAddIn.Application.ActivePresentation);
         document.showContentInformation();
     }
 }