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