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