ComponentOne Basic Library for UWP
C1.UWP Assembly / C1.Xaml Namespace / ISpellChecker Interface / ShowSuggestionsMenu Method
The editor control whose content is being spell checked.
The position in absolute plug-in coordinates where the menu should be open.
The misspelled word.
Callback called when a suggested correction is chosen.

In This Topic
    ShowSuggestionsMenu Method
    In This Topic
    Shows a context menu with suggestions for a misspelled word.
    Syntax
    'Declaration
     
    Sub ShowSuggestionsMenu( _
       ByVal editor As System.Object, _
       ByVal position As Windows.Foundation.Point, _
       ByVal word As System.String, _
       ByVal correctCallback As System.Action(Of String) _
    ) 
    void ShowSuggestionsMenu( 
       System.object editor,
       Windows.Foundation.Point position,
       System.string word,
       System.Action<string> correctCallback
    )

    Parameters

    editor
    The editor control whose content is being spell checked.
    position
    The position in absolute plug-in coordinates where the menu should be open.
    word
    The misspelled word.
    correctCallback
    Callback called when a suggested correction is chosen.
    See Also