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