Skip to main content
A newer version of this page is available. .

TokenEdit.CheckItem(Object) Method

Checks the token with the specified value in your TokenEdit control.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

public void CheckItem(
    object value
)

Parameters

Name Type Description
value Object

An Object that is the value of the token that will be checked.

Remarks

Depending on the RepositoryItemTokenEdit.CheckMode property value, users can select (check) one or multiple tokens.

The code sample below illustrates how to select and check the January token.


tokenEdit.EditValue = "January";
    tokenEdit.CheckItem("January");
See Also