Exemple #1
0
 public void StepBack()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.AddZoomOutButtonClick(new RibbonControl("StepBack"));
     });
 }
Exemple #2
0
 public void OpenSpotlightDialog()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.SpotlightDialogButtonPressed(new RibbonControl("OpenSpotlightDialog"));
     });
 }
Exemple #3
0
 public void ConvertToPic()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.ConvertToPictureButtonClick(new RibbonControl("ConvertToPic"));
     });
 }
Exemple #4
0
 public void AnimateInSlide()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.AddInSlideAnimationButtonClick(new RibbonControl("AnimateInSlide"));
     });
 }
Exemple #5
0
 public void Spotlight()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.SpotlightBtnClick(new RibbonControl("Spotlight"));
     });
 }
Exemple #6
0
 public void SepiaRemainderEffect()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.SepiaRemainderEffectClick(new RibbonControl("SepiaEffect"));
     });
 }
Exemple #7
0
 public void BlackAndWhiteBackgroundEffect()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.BlackWhiteBackgroundEffectClick(new RibbonControl("BlackAndWhiteEffect"));
     });
 }
Exemple #8
0
 public void AutoNarrate()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.AddAudioClick(new RibbonControl("AutoNarrate"));
     });
 }
Exemple #9
0
 public void AutoCrop()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.CropShapeButtonClick(new RibbonControl("AutoCrop"));
     });
 }
Exemple #10
0
 public void HighlightBackground()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.HighlightBulletsBackgroundButtonClick(new RibbonControl("HighlightBackground"));
     });
 }
Exemple #11
0
 public void HighlightFragments()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.HighlightTextFragmentsButtonClick(new RibbonControl("HighlightFragments"));
     });
 }
Exemple #12
0
 public void HighlightPoints()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.HighlightBulletsTextButtonClick(new RibbonControl("HighlightPoints"));
     });
 }
Exemple #13
0
 public void SetZoomProperties(bool backgroundChecked, bool multiSlideChecked)
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.ZoomPropertiesEdited(backgroundChecked, multiSlideChecked);
     });
 }
Exemple #14
0
 public void AddZoomToArea()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.ZoomBtnClick(new RibbonControl("ZoomToArea"));
     });
 }
Exemple #15
0
 public void GreyScaleRemainderEffect()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.GreyScaleRemainderEffectClick(new RibbonControl("GreyScaleEffect"));
     });
 }
Exemple #16
0
 public void GenerateTextAgenda()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.BulletPointAgendaClick(new RibbonControl("TextAgenda"));
     });
 }
Exemple #17
0
 public void GothamRemainderEffect()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.GothamRemainderEffectClick(new RibbonControl("GothamEffect"));
     });
 }
Exemple #18
0
 public void GenerateVisualAgenda()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.VisualAgendaClick(new RibbonControl("VisualAgenda"));
     });
 }
Exemple #19
0
 public void BlurBackgroundEffect()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.BlurBackgroundEffectClick(new RibbonControl("BlurRemainderEffect"));
     });
 }
Exemple #20
0
 public void GenerateBeamAgenda()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.BeamAgendaClick(new RibbonControl("BeamAgenda"));
     });
 }
Exemple #21
0
 public void SepiaBackgroundEffect()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.SepiaBackgroundEffectClick(new RibbonControl("SepiaEffect"));
     });
 }
Exemple #22
0
 public void RemoveAgenda()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.RemoveAgendaClick(new RibbonControl("RemoveAgenda"));
     });
 }
Exemple #23
0
 public void AutoCaptions()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.AddCaptionClick(new RibbonControl("AutoCaptions"));
     });
 }
Exemple #24
0
 public void SynchronizeAgenda()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.UpdateAgendaClick(new RibbonControl("SyncAgenda"));
     });
 }
Exemple #25
0
 public void SetSpotlightProperties(float newTransparency, float newSoftEdge, Color newColor)
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.SpotlightPropertiesEdited(newTransparency, newSoftEdge, newColor);
     });
 }
Exemple #26
0
 public void TransparentEffect()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.TransparentEffectClick(new RibbonControl("TransparentEffect"));
     });
 }
Exemple #27
0
 public void FitToHeight()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.OnAction(new RibbonControl("fitToHeightShape"));
     });
 }
Exemple #28
0
 public void MagnifyingGlassEffect()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.MagnifyGlassEffectClick(new RibbonControl("MagnifyingGlassEffect"));
     });
 }
Exemple #29
0
 public void DrillDown()
 {
     UIThreadExecutor.Execute(() =>
     {
         Ribbon.AddZoomInButtonClick(new RibbonControl("DrillDown"));
     });
 }
 public void AnimateInSlide()
 {
     UIThreadExecutor.Execute((Action)(() =>
     {
         Ribbon.OnAction(new RibbonControl(AnimationLabText.AnimateInSlideTag));
     }));
 }