18 references to ISpellChecker
PresentationFramework (18)
System\Windows\Documents\MsSpellCheckLib\RCW.cs (3)
176
void Invoke([In, MarshalAs(UnmanagedType.Interface)]
ISpellChecker
sender);
272
ISpellChecker
CreateSpellChecker([In, MarshalAs(UnmanagedType.LPWStr)] string languageTag);
303
public extern virtual
ISpellChecker
CreateSpellChecker([In, MarshalAs(UnmanagedType.LPWStr)] string languageTag);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (3)
12
using ISpellChecker = System.Windows.Documents.MsSpellCheckLib.RCW.
ISpellChecker
;
45
_speller = new ChangeNotifyWrapper<
ISpellChecker
>();
646
private ChangeNotifyWrapper<
ISpellChecker
> _speller;
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (2)
4
using ISpellChecker = System.Windows.Documents.MsSpellCheckLib.RCW.
ISpellChecker
;
49
public void Invoke(
ISpellChecker
sender)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerCreationHelper.cs (2)
92
public RCW.
ISpellChecker
CreateSpellChecker()
104
public bool CreateSpellCheckerRetryPreamble(out Func<RCW.
ISpellChecker
> func)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerFactory.cs (8)
16
using ISpellChecker = System.Windows.Documents.MsSpellCheckLib.RCW.
ISpellChecker
;
273
private
ISpellChecker
CreateSpellCheckerImpl(string languageTag)
278
private
ISpellChecker
CreateSpellCheckerImplWithRetries(string languageTag, bool suppressCOMExceptions = true)
280
ISpellChecker
spellChecker = null;
283
RetryHelper.TryExecuteFunction<
ISpellChecker
>(
293
private
ISpellChecker
CreateSpellCheckerPrivate(string languageTag, bool suppressCOMExceptions = true)
295
ISpellChecker
spellChecker = null;
302
internal static
ISpellChecker
CreateSpellChecker(string languageTag, bool suppressCOMExceptions = true)