Esempio n. 1
0
 /// <summary>
 /// Go to a slide
 /// </summary>
 /// <param name="handler"></param>
 /// <param name="slideIndex">1-based</param>
 public static void GotoSlide(this ActionHandler handler, int slideIndex)
 {
     ActionFrameworkExtensions.GotoSlide(slideIndex);
 }
Esempio n. 2
0
 public static void ExecuteOfficeCommand(this ContentControl control, string commandMso)
 {
     ActionFrameworkExtensions.ExecuteOfficeCommand(commandMso);
 }
Esempio n. 3
0
 public static CustomTaskPane GetTaskPane(this ContentControl control, Type taskPaneType)
 {
     return(ActionFrameworkExtensions.GetTaskPane(taskPaneType));
 }
Esempio n. 4
0
 public static PowerPointPresentation GetCurrentPresentation(this ContentControl control)
 {
     return(ActionFrameworkExtensions.GetCurrentPresentation());
 }
Esempio n. 5
0
 public static ThisAddIn GetAddIn(this ContentControl control)
 {
     return(ActionFrameworkExtensions.GetAddIn());
 }
Esempio n. 6
0
 public static Presentations GetPresentations(this ContentControl control)
 {
     return(ActionFrameworkExtensions.GetPresentations());
 }
Esempio n. 7
0
 public static Selection GetCurrentSelection(this ContentControl control)
 {
     return(ActionFrameworkExtensions.GetCurrentSelection());
 }
Esempio n. 8
0
 public static Presentations GetPresentations()
 {
     return(ActionFrameworkExtensions.GetPresentations());
 }
Esempio n. 9
0
 public static DocumentWindow GetCurrentWindow()
 {
     return(ActionFrameworkExtensions.GetCurrentWindow());
 }
 public static ThisAddIn GetAddIn()
 {
     return(ActionFrameworkExtensions.GetAddIn());
 }
Esempio n. 11
0
#pragma warning disable 0618
        public static Application GetApplication()
        {
            return(ActionFrameworkExtensions.GetApplication());
        }
Esempio n. 12
0
 public static CustomTaskPane GetTaskPane(this ActionHandler handler, Type taskPaneType)
 {
     return(ActionFrameworkExtensions.GetTaskPane(taskPaneType));
 }
Esempio n. 13
0
 public static void StartNewUndoEntry(this ActionHandler handler)
 {
     ActionFrameworkExtensions.StartNewUndoEntry();
 }
Esempio n. 14
0
 public static void ExecuteOfficeCommand(this ActionHandler handler, string commandMso)
 {
     ActionFrameworkExtensions.ExecuteOfficeCommand(commandMso);
 }
Esempio n. 15
0
 public static CustomTaskPane GetTaskPane(Type taskPaneType)
 {
     return(ActionFrameworkExtensions.GetTaskPane(taskPaneType));
 }
Esempio n. 16
0
 public static Selection GetCurrentSelection()
 {
     return(ActionFrameworkExtensions.GetCurrentSelection());
 }
Esempio n. 17
0
#pragma warning disable 0618
        public static Application GetApplication(this ContentControl control)
        {
            return(ActionFrameworkExtensions.GetApplication());
        }
Esempio n. 18
0
 public static PowerPointSlide GetCurrentSlide()
 {
     return(ActionFrameworkExtensions.GetCurrentSlide());
 }
Esempio n. 19
0
 public static DocumentWindow GetCurrentWindow(this ContentControl control)
 {
     return(ActionFrameworkExtensions.GetCurrentWindow());
 }
Esempio n. 20
0
 public static PowerPointPresentation GetCurrentPresentation()
 {
     return(ActionFrameworkExtensions.GetCurrentPresentation());
 }
Esempio n. 21
0
 public static PowerPointSlide GetCurrentSlide(this ContentControl control)
 {
     return(ActionFrameworkExtensions.GetCurrentSlide());
 }
Esempio n. 22
0
 public static Ribbon1 GetRibbonUi()
 {
     return(ActionFrameworkExtensions.GetRibbonUi());
 }
Esempio n. 23
0
 public static Ribbon1 GetRibbonUi(this ContentControl control)
 {
     return(ActionFrameworkExtensions.GetRibbonUi());
 }
Esempio n. 24
0
 /// <summary>
 /// Go to a slide
 /// </summary>
 /// <param name="slideIndex">1-based</param>
 public static void GotoSlide(int slideIndex)
 {
     ActionFrameworkExtensions.GotoSlide(slideIndex);
 }
Esempio n. 25
0
 /// <summary>
 /// Go to a slide
 /// </summary>
 /// <param name="control"></param>
 /// <param name="slideIndex">1-based</param>
 public static void GotoSlide(this ContentControl control, int slideIndex)
 {
     ActionFrameworkExtensions.GotoSlide(slideIndex);
 }
Esempio n. 26
0
 public static void ExecuteOfficeCommand(string commandMso)
 {
     ActionFrameworkExtensions.ExecuteOfficeCommand(commandMso);
 }
Esempio n. 27
0
 public static void StartNewUndoEntry(this ContentControl control)
 {
     ActionFrameworkExtensions.StartNewUndoEntry();
 }
Esempio n. 28
0
 public static void StartNewUndoEntry()
 {
     ActionFrameworkExtensions.StartNewUndoEntry();
 }
Esempio n. 29
0
 public static CustomTaskPane RegisterTaskPane(this ContentControl control, Type taskPaneType, string taskPaneTitle,
                                               EventHandler visibleChangeEventcontrol = null, EventHandler dockPositionChangeEventcontrol = null)
 {
     return(ActionFrameworkExtensions.RegisterTaskPane(taskPaneType, taskPaneTitle,
                                                       visibleChangeEventcontrol, dockPositionChangeEventcontrol));
 }
Esempio n. 30
0
 public static Ribbon1 GetRibbonUi(this ActionHandler handler)
 {
     return(ActionFrameworkExtensions.GetRibbonUi());
 }