private void ChangeZoomToFitType(Accusoft.ImagXpressSdk.ZoomToFitType newZoomFitType) { object[] theArgs = { newZoomFitType }; myReferenceToMyViewer.Invoke(new SafeContextZoomChanger(this.RealZoomToFitChangerInTheSafeContext), theArgs); }
private void RealZoomToFitChangerInTheSafeContext(Accusoft.ImagXpressSdk.ZoomToFitType newZoomFitType) { myReferenceToMyViewer.ZoomToFit(newZoomFitType); }