ClassDateRangeMaskedInput
A custom RadMaskedTextInput control representing a pair of start and end dates.
Definition
Namespace:Telerik.Windows.Controls.DateRangePicker
Assembly:Telerik.Windows.Controls.Input.dll
Syntax:
public class DateRangeMaskedInput : RadMaskedTextInput
Inheritance: objectRadMaskedInputBaseRadMaskedSectionBaseRadMaskedTextInputDateRangeMaskedInput
Inherited Members
Constructors
DateRangeMaskedInput()
Initializes a new instance of the DateRangeMaskedInput class.
Declaration
public DateRangeMaskedInput()
Fields
BlackoutDatesProperty
Identifies the property.
Declaration
public static readonly DependencyProperty BlackoutDatesProperty
Field Value
DependencyProperty
DatePatternProperty
Identifies the DatePattern dependency property.
Declaration
public static readonly DependencyProperty DatePatternProperty
Field Value
DependencyProperty
EndDateProperty
Identifies the EndDate dependency property.
Declaration
public static readonly DependencyProperty EndDateProperty
Field Value
DependencyProperty
SelectableDateEndProperty
Identifies the property.
Declaration
public static readonly DependencyProperty SelectableDateEndProperty
Field Value
DependencyProperty
SelectableDateStartProperty
Identifies the dependency property.
Declaration
public static readonly DependencyProperty SelectableDateStartProperty
Field Value
DependencyProperty
SeparatorProperty
Identifies the Separator dependency property.
Declaration
public static readonly DependencyProperty SeparatorProperty
Field Value
DependencyProperty
StartDateProperty
Identifies the StartDate dependency property.
Declaration
public static readonly DependencyProperty StartDateProperty
Field Value
DependencyProperty
Properties
BlackoutDates
Gets or sets a list of dates that cannot be selected. This is a dependency property.
Declaration
public IEnumerable<DateTime> BlackoutDates { get; set; }
Property Value
Remarks
The BlackoutDates specifies a list of dates that cannot be selected by the user.
DatePattern
Gets or sets a value indicating the date pattern used in formatting the dates. Formats for abbreviated days (ddd,dddd), months (MMM, MMMM) are not supported. Hours, minutes, seconds, milliseconds are not supported.
EndDate
Gets or sets the end date of the range input.
SelectableDateEnd
Gets or sets the last date that can be selected. This is a dependency property.
Declaration
public DateTime? SelectableDateEnd { get; set; }
Property Value
Remarks
The SelectableDateEnd specifies the last date that can be selected by the user.
SelectableDateStart
Gets or sets the first date that can be selected. This is a dependency property.
Declaration
public DateTime? SelectableDateStart { get; set; }
Property Value
Remarks
The SelectableDateStart specifies the first date that can be selected by the user.
Separator
Gets or sets the string representing the separator between the dates in the input.
Methods
CoerceTextOverride(ref int)
The value has changed and the Text has to be coerced against the value.
OnPreviewKeyDown(KeyEventArgs)
Invoked when an unhandled System.Windows.Input.Keyboard.PreviewKeyDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.
Declaration
protected override void OnPreviewKeyDown(KeyEventArgs e)
Parameters
e
KeyEventArgs
Overrides