Invokes the built-in dialog box for checking incorrect or misspelled (TXTextControl.WPF.TextControl.MisspelledWords) words. The first implementation opens the spell check dialog for checking of the TXSpellChecker.IncorrectWords collection in TX Spell for WPF. To connect the SpellCheckDialog with an object of type TXTextControl.WPF.TextControl, the Show method provides the third implementation. At both implementations, the dialog's selected suggestion dictionary is specified through the SuggestionDictionaryComboBox.SuggestionDictionary property. The second and the fourth implementation can be used to invoke the dialog with another suggestion dictionary.

Show(System.Windows.Window)

public void Show(System.Windows.Window owner);
Public Sub Show(owner AS System.Windows.Window)

Show(System.Windows.Window, Proofing.Dictionary)

public void Show(System.Windows.Window owner, Proofing.Dictionary suggestionDictionary);
Public Sub Show(owner AS System.Windows.Window, suggestionDictionary As Proofing.Dictionary)

Show(Object)

public void Show(object textControl);
Public Sub Show(textControl As Object)

Show(Object, Proofing.Dictionary)

public void Show(object textControl, Proofing.Dictionary suggestionDictionary);
Public Sub Show(textControl As Object, suggestionDictionary As Proofing.Dictionary)

Parameters

Parameter Description
owner Any object that implements System.Windows.Window and represents the top-level window that owns this dialog.
suggestionDictionary Specifies the dictionary used for creating suggestions. This parameter is only useful, if more than one dictionary is added to the spellchecker's dictionary collection.
textControl Specifies the object of type TXTextControl.WPF.TextControl that is connected to the dialog.