Skip to main content

AfterCheckWordEventArgs(Object, String, String, SpellCheckOperation, Position) Constructor

Initializes a new AfterCheckWordEventArgs class instance with specified settings.

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public AfterCheckWordEventArgs(
    object editControl,
    string originalWord,
    string changedWord,
    SpellCheckOperation result,
    Position startPosition
)

Parameters

Name Type Description
editControl Object

An object, representing the control being checked.

originalWord String

A string, representing a word before the check.

changedWord String

A string, representing the word modified after the spell check.

result SpellCheckOperation

A SpellCheckOperation enumeration value, representing the operation type.

startPosition DevExpress.XtraSpellChecker.Parser.Position

A DevExpress.XtraSpellChecker.Parser.Position object, representing the position in the text where the checked word begins.

See Also