Class
DateInput

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class DateInput

Inheritance: objectDateInput

Constructors

DateInput()

Declaration

cs-api-definition
public DateInput()

DateInput(CultureInfo)

Declaration

cs-api-definition
public DateInput(CultureInfo cultureInfo)

Parameters

cultureInfo

CultureInfo

Properties

CultureInfo

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

Declaration

cs-api-definition
public CultureInfo CultureInfo { get; set; }

Property Value

CultureInfo

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

DateFormat

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

Declaration

cs-api-definition
public virtual string DateFormat { get; set; }

Property Value

string

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

Example

csharp
private void Page_Load(object sender, System.EventArgs e)
{
    RadDateInput1.DateFormat = "M/d/yyyy"; //Short date pattern. The same as "d".
}
csharp
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
    RadDateInput1.DateFormat = "M/d/yyyy" 'Short date pattern. The same as "d".
End Sub

MaxDate

Gets or sets the maximum date.

Declaration

cs-api-definition
public DateTime MaxDate { get; set; }

Property Value

DateTime

MinDate

Gets or sets the minimum date.

Declaration

cs-api-definition
public DateTime MinDate { get; set; }

Property Value

DateTime

ShortYearCenturyEnd

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.

Declaration

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

Property Value

int

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

ShortYearCenturyStart

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.

Declaration

cs-api-definition
public int ShortYearCenturyStart { get; }

Property Value

int

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

ParseDate(string, DateTime?)

Declaration

cs-api-definition
public DateTime? ParseDate(string value, DateTime? baseDate)

Parameters

value

string

baseDate

DateTime?

Returns

DateTime?