18 references to ISpellChecker
PresentationFramework (18)
System\Windows\Documents\MsSpellCheckLib\RCW.cs (3)
177void Invoke([In, MarshalAs(UnmanagedType.Interface)] ISpellChecker sender); 273ISpellChecker CreateSpellChecker([In, MarshalAs(UnmanagedType.LPWStr)] string languageTag); 304public virtual extern ISpellChecker CreateSpellChecker([In, MarshalAs(UnmanagedType.LPWStr)] string languageTag);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (3)
13using ISpellChecker = System.Windows.Documents.MsSpellCheckLib.RCW.ISpellChecker; 46_speller = new ChangeNotifyWrapper<ISpellChecker>(); 649private ChangeNotifyWrapper<ISpellChecker> _speller;
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (2)
5using ISpellChecker = System.Windows.Documents.MsSpellCheckLib.RCW.ISpellChecker; 50public void Invoke(ISpellChecker sender)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerCreationHelper.cs (2)
93public RCW.ISpellChecker CreateSpellChecker() 105public bool CreateSpellCheckerRetryPreamble(out Func<RCW.ISpellChecker> func)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerFactory.cs (8)
17using ISpellChecker = System.Windows.Documents.MsSpellCheckLib.RCW.ISpellChecker; 274private ISpellChecker CreateSpellCheckerImpl(string languageTag) 279private ISpellChecker CreateSpellCheckerImplWithRetries(string languageTag, bool suppressCOMExceptions = true) 281ISpellChecker spellChecker = null; 284RetryHelper.TryExecuteFunction<ISpellChecker>( 294private ISpellChecker CreateSpellCheckerPrivate(string languageTag, bool suppressCOMExceptions = true) 296ISpellChecker spellChecker = null; 303internal static ISpellChecker CreateSpellChecker(string languageTag, bool suppressCOMExceptions = true)