Exemplo n.º 1
0
 private void buttonShowDocumentDetail_Click(object sender, RibbonControlEventArgs e)
 {
     if (Globals.ThisAddIn.Application.ActivePresentation != null)
     {
         PowerPoint2007OfficeDocument document = new PowerPoint2007OfficeDocument(Globals.ThisAddIn.Application.ActivePresentation);
         document.showDocumentDetail();
     }
 }
Exemplo n.º 2
0
 private void buttonCleanPropeties_Click(object sender, RibbonControlEventArgs e)
 {
     if (Globals.ThisAddIn.Application.ActivePresentation != null)
     {
         PowerPoint2007OfficeDocument document = new PowerPoint2007OfficeDocument(Globals.ThisAddIn.Application.ActivePresentation);
         document.DeleteAsociation();
     }
 }