KaxTimeViewCulture Property |
Provides information about a specific culture. The information includes the names
for the culture, the writing system, the calendar used, and formatting for the
times.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax [TypeConverterAttribute(typeof(CultureInfoConverter))]
public virtual CultureInfo Culture { get; set; }
<TypeConverterAttribute(GetType(CultureInfoConverter))>
Public Overridable Property Culture As CultureInfo
Get
Set
public:
[TypeConverterAttribute(typeof(CultureInfoConverter))]
virtual property CultureInfo^ Culture {
CultureInfo^ get ();
void set (CultureInfo^ value);
}
[<TypeConverterAttribute(typeof(CultureInfoConverter))>]
abstract Culture : CultureInfo with get, set
[<TypeConverterAttribute(typeof(CultureInfoConverter))>]
override Culture : CultureInfo with get, set
Property Value
Type:
CultureInfoRemarks The CultureInfo class renders culture-specific information,
such as the associated language, sublanguage, country/region, calendar, and
cultural conventions. This class also provides access to culture-specific instances
of DateTimeFormatInfo, NumberFormatInfo, CompareInfo, and TextInfo. These objects
contain the information required for culture-specific operations, such as casing,
formatting dates and numbers, and comparing strings.
See Also