예제 #1
0
        private void BtnPublish_Click(object sender, RibbonControlEventArgs e)
        {
            A3Presentation presentation = new A3Presentation(Globals.ThisAddIn.Application.ActivePresentation);

            presentation.FixMetadata(false, false);

            PublishOptions publish = new PublishOptions();

            publish.ShowDialog();
        }
예제 #2
0
        private void BtnFixAllMetadata_Click(object sender, RibbonControlEventArgs e)
        {
            A3Presentation presentation = new A3Presentation(Globals.ThisAddIn.Application.ActivePresentation);

            presentation.FixMetadata(true, true);
        }