New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class DateInput

Inheritance: objectDateInput

Constructors

C#
public DateInput()
C#
public DateInput(CultureInfo cultureInfo)
Parameters:cultureInfoCultureInfo

Properties

Gets or sets the culture that determines the value of the localizable separators and placeholders in the input mask.

C#
public CultureInfo CultureInfo { get; set; }
Property Value:

A System.Globalization.CultureInfo containing the culture information associated with the input mask.

Gets or sets the date and time format used by RadDateInput.

C#
public virtual string DateFormat { get; set; }
Property Value:

A string specifying the date format used by RadDateInput. The default value is "d" (short date format).

Gets or sets the maximum date.

C#
public DateTime MaxDate { get; set; }

Gets or sets the minimum date.

C#
public DateTime MinDate { get; set; }

Gets or sets a value that indicates the end of the century that is used to interpret the year value when a short year (single-digit or two-digit year) is entered in the input.

C#
public int ShortYearCenturyEnd { get; set; }
Property Value:

The year when the century ends. Default is 2029.

Remarks:

Having a value of 2029 indicates that a short year will be interpreted as a year between 1930 and 2029. For example 55 will be interpreted as 1955 but 12 -- as 2012

Gets a value that indicates the start of the century that is used to interpret the year value when a short year (single-digit or two-digit year) is entered in the input.

C#
public int ShortYearCenturyStart { get; }
Property Value:

The year when the century starts. Default is 1930.

Remarks:

Having a value of 1930 indicates that a short year will be interpreted as a year between 1930 and 2029. For example 55 will be interpreted as 1955 but 12 -- as 2012

Methods

C#
public DateTime? ParseDate(string value, DateTime? baseDate)
Parameters:valuestringbaseDateDateTime?Returns:

DateTime?