Class
RadMaskedTimeSpanInput

MaskedInput control for entering TimeSpan values.

Definition

Namespace:Telerik.UI.Xaml.Controls.Input

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class RadMaskedTimeSpanInput : RadMaskedInputBase

Inheritance: objectRadControlRadMaskedInputBaseRadMaskedTimeSpanInput

Inherited Members RadMaskedInputBase.TextPropertyRadMaskedInputBase.MaskPropertyRadMaskedInputBase.AllowPromptAsInputPropertyRadMaskedInputBase.AllowNullValuePropertyRadMaskedInputBase.PromptCharPropertyRadMaskedInputBase.CulturePropertyRadMaskedInputBase.EmptyTextPropertyRadMaskedInputBase.IsReadOnlyPropertyRadMaskedInputBase.HeaderTemplatePropertyRadMaskedInputBase.HeaderPropertyRadMaskedInputBase.DescriptionPropertyRadMaskedInputBase.OnApplyTemplate()RadMaskedInputBase.OnGotFocus(RoutedEventArgs)RadMaskedInputBase.OnLostFocus(RoutedEventArgs)RadMaskedInputBase.OnPointerExited(PointerRoutedEventArgs)RadMaskedInputBase.OnPointerEntered(PointerRoutedEventArgs)RadMaskedInputBase.ChangeVisualState()RadMaskedInputBase.ChangeVisualState(bool)RadMaskedInputBase.OnValueChanging(ValueChangingEventArgs)RadMaskedInputBase.OnPreviewKeyDown(KeyRoutedEventArgs)RadMaskedInputBase.OnValueChanged(EventArgs)RadMaskedInputBase.TextRadMaskedInputBase.MaskRadMaskedInputBase.AllowPromptAsInputRadMaskedInputBase.AllowNullValueRadMaskedInputBase.EmptyTextRadMaskedInputBase.IsReadOnlyRadMaskedInputBase.HeaderTemplateRadMaskedInputBase.HeaderRadMaskedInputBase.DescriptionRadMaskedInputBase.ValueChangedRadMaskedInputBase.ValueChangingRadMaskedInputBase.ContextMenuOpeningRadControl.EndVisualStateUpdate(bool, bool)RadControl.UpdateVisualState(bool)RadControl.BeginVisualStateUpdate()RadControl.OnCreateAutomationPeer()RadControl.SetVisualState(string, bool)RadControl.CanUpdateVisualState()RadControl.ComposeVisualStateName()RadControl.MeasureOverride(Size)RadControl.ArrangeOverride(Size)RadControl.UnapplyTemplateCore()RadControl.OnIsEnabledChanged(bool, bool)RadControl.OnTemplateApplied()RadControl.ApplyTemplateCore()RadControl.LoadCore()RadControl.OnLoaded()RadControl.UnloadCore()RadControl.CurrentVisualStateRadControl.IsLoadedRadControl.IsLoadingRadControl.IsUnloadedRadControl.WasUnloadedRadControl.IsTemplateApplied

Constructors

RadMaskedTimeSpanInput()

Declaration

cs-api-definition
public RadMaskedTimeSpanInput()

Fields

AutoSelectNextPartProperty

Identifies the AutoSelectNextPart dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty AutoSelectNextPartProperty

Field Value

DependencyProperty

DaysStepProperty

Identifies the DaysStep dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty DaysStepProperty

Field Value

DependencyProperty

EnableKeyNavigationProperty

Identifies the EnableKeyNavigation dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty EnableKeyNavigationProperty

Field Value

DependencyProperty

HoursStepProperty

Identifies the HoursStep dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty HoursStepProperty

Field Value

DependencyProperty

MaxValueProperty

Identifies the MaxValue dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty MaxValueProperty

Field Value

DependencyProperty

MillisecondsStepProperty

Identifies the MillisecondsStep dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty MillisecondsStepProperty

Field Value

DependencyProperty

MinValueProperty

Identifies the MinValue dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty MinValueProperty

Field Value

DependencyProperty

MinutesStepProperty

Identifies the MinutesStep dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty MinutesStepProperty

Field Value

DependencyProperty

SecondsStepProperty

Identifies the SecondsStep dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty SecondsStepProperty

Field Value

DependencyProperty

ValueProperty

Identifies the Value dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty ValueProperty

Field Value

DependencyProperty

Properties

AutoSelectNextPart

Gets or sets the value that indicates whether the next part should get selected when the current one is filled.

Declaration

cs-api-definition
public bool AutoSelectNextPart { get; set; }

Property Value

bool

DaysStep

Gets or sets the days step. This value is used to increase the days of the Value when the days part is selected and the "Up" arrow key is pressed. This value is also used to decrease the days of the Value when the days part is selected and the "Down" arrow key is pressed.

Declaration

cs-api-definition
public int DaysStep { get; set; }

Property Value

int

EnableKeyNavigation

Gets or sets a value indicating whether the left/right key navigation over sections is enabled.

Declaration

cs-api-definition
public bool EnableKeyNavigation { get; set; }

Property Value

bool

HoursStep

Gets or sets the hours step. This value is used to increase the hours of the Value when the hours part is selected and the "Up" arrow key is pressed. This value is also used to decrease the hours of the Value when the hours part is selected and the "Down" arrow key is pressed.

Declaration

cs-api-definition
public int HoursStep { get; set; }

Property Value

int

MaxValue

Gets or sets the max value of the control.

Declaration

cs-api-definition
public TimeSpan MaxValue { get; set; }

Property Value

TimeSpan

MillisecondsStep

Gets or sets the milliseconds step. This value is used to increase the milliseconds of the Value when the milliseconds part is selected and the "Up" arrow key is pressed. This value is also used to decrease the milliseconds of the Value when the milliseconds part is selected and the "Down" arrow key is pressed.

Declaration

cs-api-definition
public int MillisecondsStep { get; set; }

Property Value

int

MinValue

Gets or sets the min value of the control.

Declaration

cs-api-definition
public TimeSpan MinValue { get; set; }

Property Value

TimeSpan

MinutesStep

Gets or sets the minutes step. This value is used to increase the minutes of the Value when the minutes part is selected and the "Up" arrow key is pressed. This value is also used to decrease the minutes of the Value when the minutes part is selected and the "Down" arrow key is pressed.

Declaration

cs-api-definition
public int MinutesStep { get; set; }

Property Value

int

SecondsStep

Gets or sets the seconds step. This value is used to increase the seconds of the Value when the seconds part is selected and the "Up" arrow key is pressed. This value is also used to decrease the seconds of the Value when the seconds part is selected and the "Down" arrow key is pressed.

Declaration

cs-api-definition
public int SecondsStep { get; set; }

Property Value

int

Value

Gets or sets the TimeSpan value of the control. The value may be null if the AllowNullValue is true.

Declaration

cs-api-definition
public object Value { get; set; }

Property Value

object