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

TimeSpanInputMode Enum

Lists the values that specify the time span input mode.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v21.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public enum TimeSpanInputMode

Members

Name Description
Restricted

End users cannot enter values greater then the current mask can display (e.g., users cannot enter 65 seconds, but can enter 00-59 seconds).

NotRestricted

End users can enter values greater then the current mask can display (e.g., users can enter 65 seconds). The entered large value will be added to the current value.

NotRestrictedLargestUnit

End users cannot enter values greater then the current mask can display (e.g., users cannot enter 65 seconds). The entered value will be added to the current value. End users can still enter large values to a mask part that corresponds to the largest unit.

Remarks

The values listed by this enumeration are used to set the TimeSpanMaskOptions.InputMode attached property.

See Also