public Task SetTextAsync(string text)
 {
     return(BestImplementation.SetTextAsync(text));
 }
Beispiel #2
0
 public void ZoomTo(ITextView textView, double zoomLevel)
 {
     BestImplementation.ZoomTo(textView, zoomLevel);
 }
Beispiel #3
0
 public double ZoomLevel(ITextView textView)
 {
     return(BestImplementation.ZoomLevel(textView));
 }
Beispiel #4
0
 public void ZoomOut(ITextView textView)
 {
     BestImplementation.ZoomOut(textView);
 }
 public UIThreadOperationStatus Execute(UIThreadOperationExecutionOptions executionOptions, Action <IUIThreadOperationContext> action)
 {
     return(BestImplementation.Execute(executionOptions, action));
 }
 public UIThreadOperationStatus Execute(string title, string defaultDescription, bool allowCancellation, bool showProgress, Action <IUIThreadOperationContext> action)
 {
     return(BestImplementation.Execute(title, defaultDescription, allowCancellation, showProgress, action));
 }
 public IUIThreadOperationContext BeginExecute(UIThreadOperationExecutionOptions executionOptions)
 {
     return(BestImplementation.BeginExecute(executionOptions));
 }
 public IUIThreadOperationContext BeginExecute(string title, string defaultDescription, bool allowCancellation, bool showProgress)
 {
     return(BestImplementation.BeginExecute(title, defaultDescription, allowCancellation, showProgress));
 }