CultureInfo object. Each culture has different conventions for displaying dates, time, numbers, currency, and other information. Neutral cultures are not supported.

Namespace:  C1.Web.UI.Controls.C1Input
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[C1CategoryAttribute("Category.Behavior")]
[BindableAttribute(false)]
[EditorAttribute(typeof(UITypeEditor), typeof(CultureInfoConverter))]
public CultureInfo Culture { get; set; }
Visual Basic (Declaration)
<C1CategoryAttribute("Category.Behavior")> _
<BindableAttribute(False)> _
<EditorAttribute(GetType(UITypeEditor), GetType(CultureInfoConverter))> _
Public Property Culture As CultureInfo
	Get
	Set

Remarks

Returning value can be null if Culture is not defined.
The CultureInfo class specifies a unique name for each culture, based on the RFC 3066 standard for Windows Vista and later, and the RFC 1766 standard for pre-Windows Vista operating systems. The name is a combination of an ISO 639 two-letter lowercase culture code associated with a language and an ISO 3166 two-letter uppercase subculture code associated with a country or region.

See Also