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