KaxDateInputSelectedDate Property |
Gets or sets the date content of KaxDateInput.
Namespace: Kettic.AspNet.ControlsAssembly: 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; }
Public Overridable Property SelectedDate As Nullable(Of DateTime)
Get
Set
public:
virtual property Nullable<DateTime> SelectedDate {
Nullable<DateTime> get ();
void set (Nullable<DateTime> value);
}
abstract SelectedDate : Nullable<DateTime> with get, set
override SelectedDate : Nullable<DateTime> with 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;
}
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
KaxDateInput1.SelectedDate = DateTime.Now
End Sub
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also