| KaxDatePickerCulture Property | 
        
        
        Gets or sets the culture used by KaxDatePicker to format the date.
         
        Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
 Syntax
Syntaxpublic virtual CultureInfo Culture { get; set; }Public Overridable Property Culture As CultureInfo
	Get
	Set
public:
virtual property CultureInfo^ Culture {
	CultureInfo^ get ();
	void set (CultureInfo^ value);
}abstract Culture : CultureInfo with get, set
override Culture : CultureInfo with 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
Examples
                The following example demonstrates how to use the 
Culture
                property. 
                
private void Page_Load(object sender, System.EventArgs e)
{
    KaxDatePicker1.Culture = new CultureInfo("en-US");
}Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
    KaxDatePicker1.Culture = New CultureInfo("en-US")
End SubNo 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
See Also