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