Specifies the culture setting for current WebScheduler instance.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.CategoryAttribute("General")>
<System.ComponentModel.DefaultValueAttribute()>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.DescriptionAttribute("Specifies the culture setting for current WebScheduler instance.")>
Public Property Culture As System.Globalization.CultureInfo |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebScheduler
Dim value As System.Globalization.CultureInfo
instance.Culture = value
value = instance.Culture |
C# | |
---|
[System.ComponentModel.CategoryAttribute("General")]
[System.ComponentModel.DefaultValueAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies the culture setting for current WebScheduler instance.")]
public System.Globalization.CultureInfo Culture {get; set;} |
Delphi | |
---|
public read-write property Culture: System.Globalization.CultureInfo; |
JScript | |
---|
System.ComponentModel.CategoryAttribute("General")
System.ComponentModel.DefaultValueAttribute()
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.DescriptionAttribute("Specifies the culture setting for current WebScheduler instance.")
public function get,set Culture : System.Globalization.CultureInfo |
Managed Extensions for C++ | |
---|
[System.ComponentModel.CategoryAttribute("General")]
[System.ComponentModel.DefaultValueAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies the culture setting for current WebScheduler instance.")]
public: __property System.Globalization.CultureInfo* get_Culture();
public: __property void set_Culture(
System.Globalization.CultureInfo* value
); |
C++/CLI | |
---|
[System.ComponentModel.CategoryAttribute("General")]
[System.ComponentModel.DefaultValueAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies the culture setting for current WebScheduler instance.")]
public:
property System.Globalization.CultureInfo^ Culture {
System.Globalization.CultureInfo^ get();
void set ( System.Globalization.CultureInfo^ value);
} |
Property Value
The default culture setting for current WebScheduler is English (United States).
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also