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