Click or drag to resize
KaxDateInputSelectedDate Property
Gets or sets the date content of KaxDateInput.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public virtual Nullable<DateTime> SelectedDate { get; set; }

Property Value

Type: NullableDateTime
A DateTime object that represents the selected date. The default value is MinDate.
Examples
The following example demonstrates how to use the SelectedDate property to set the content of KaxDateInput.
private void Page_Load(object sender, System.EventArgs e)
{
    KaxDateInput1.SelectedDate = DateTime.Now;
}
See Also