SpellingExtensions.GetErrorOperationCommands(DependencyObject, Position) Method
In This Article
Creates a list of commands available for the misspelled or repeated word at the specified position in the given editor.
Namespace: DevExpress.Xpf.SpellChecker
Assembly: DevExpress.Xpf.SpellChecker.v24.2.dll
NuGet Package: DevExpress.Wpf.SpellChecker
#Declaration
public static IEnumerable<SpellCheckerCommand> GetErrorOperationCommands(
this DependencyObject editor,
Position position
)
#Parameters
Name | Type | Description |
---|---|---|
editor | Dependency |
A target editor. |
position | DevExpress. |
A position in the editor the misspelled or repeated word occupies. |
#Returns
Type | Description |
---|---|
IEnumerable<Spell |
A list of error commands available for the target word. |
#Remarks
The returned list depends on the type of misspelling and current spellchecker operation mode.
Use the GetSpellCheckError method to invoke a custom context menu for misspelled or repeated words.
See Also