ComponentOne FinancialChart for WPF
C1.WPF 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 Object, _
       ByVal position As Point, _
       ByVal word As String, _
       ByVal correctCallback As Action(Of String) _
    ) 
    'Usage
     
    
    Dim instance As ISpellChecker
    Dim editor As Object
    Dim position As Point
    Dim word As String
    Dim correctCallback As Action(Of String)
     
    instance.ShowSuggestionsMenu(editor, position, word, 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