Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TimeSpanInputMode Enum

Lists the values that specify the time span input mode.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.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