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

TokenEdit.UncheckItem(Object) Method

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

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

public void UncheckItem(
    object value
)

Parameters

Name Type Description
value Object

An Object that is the value of the token that needs to be unchecked.

Remarks

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

The code sample below illustrates how to prevent checking tokens in your TokenEdit control by using UncheckItem.


void OnTokenEditTokenClick(object sender, TokenEditTokenClickEventArgs e) {
    TokenEdit tokenEdit = (TokenEdit)sender;
    tokenEdit.UncheckItem(e.Value);
}
See Also