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

TokenLookUpEditStyleSettings.NewTokenPosition Property

Specifies the placement of new tokens. This is a dependency property.

Namespace: DevExpress.Xpf.Grid.LookUp

Assembly: DevExpress.Xpf.Grid.v19.2.dll

Declaration

public NewTokenPosition? NewTokenPosition { get; set; }

Property Value

Type Description
Nullable<NewTokenPosition>

A NewTokenPosition enumeration value.

Available values:

Name Description
None

End-user can add new tokens by selecting them from the drop-down only.

NewTokenPosition - None

Near

New tokens are added at the start of the editor.

NewTokenPosition - Near

Far

New tokens are added at the end of the editor.

NewTokenPosition - Far

Remarks

If the NewTokenPosition property is set to null, new tokens are added at the start of the editor.

If the NewTokenPosition property is set to NewTokenPosition.None, adding new tokens is disabled.

See Also