Indicates whether Thursday is work week.
Indicates whether Thursday is work week.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Indicates whether Thursday is work week.")>
<ISNet.Serialization.XmlSerializableAttribute()>
<System.ComponentModel.CategoryAttribute("Work Week")>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.DefaultValueAttribute()>
Public Property Thursday As System.Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebSchedulerWorkWeekSettings
Dim value As System.Boolean
instance.Thursday = value
value = instance.Thursday |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Indicates whether Thursday is work week.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Work Week")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public System.bool Thursday {get; set;} |
Delphi | |
---|
public read-write property Thursday: System.Boolean; |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Indicates whether Thursday is work week.")
ISNet.Serialization.XmlSerializableAttribute()
System.ComponentModel.CategoryAttribute("Work Week")
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.DefaultValueAttribute()
public function get,set Thursday : System.boolean |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Indicates whether Thursday is work week.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Work Week")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public: __property System.bool get_Thursday();
public: __property void set_Thursday(
System.bool value
); |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Indicates whether Thursday is work week.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Work Week")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public:
property System.bool Thursday {
System.bool get();
void set ( System.bool value);
} |
Property Value
The default value is True.
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