Click or drag to resize
KaxDateTimePickerCulture Property
Gets or sets the culture used by KaxDateTimePicker to format the date and time value.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public override CultureInfo Culture { get; set; }

Property Value

Type: CultureInfo
A CultureInfo object that represents the current culture used. The default value is System.Threading.Thread.CurrentThread.CurrentUICulture.
Examples
The following example demonstrates how to use the Culture property.
Example 1 (CS)
private void Page_Load(object sender, System.EventArgs e)
{
    KaxDateTimePicker1.Culture = new CultureInfo("en-US");
}
Example 2 (VB)
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
    KaxDateTimePicker1.Culture = New CultureInfo("en-US")
End Sub
See Also