Specifies the Date of the Holiday.
Sets the holiday's date.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Specifies the Date of the Holiday.")>
<ISNet.Serialization.XmlSerializableAttribute()>
<System.ComponentModel.CategoryAttribute("Holiday")>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.DefaultValueAttribute()>
Public Property Date As System.Date |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebSchedulerHoliday
Dim value As System.Date
instance.Date = value
value = instance.Date |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Specifies the Date of the Holiday.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Holiday")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DefaultValueAttribute()]
public System.DateTime Date {get; set;} |
Delphi | |
---|
public read-write property Date: System.DateTime; |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Specifies the Date of the Holiday.")
ISNet.Serialization.XmlSerializableAttribute()
System.ComponentModel.CategoryAttribute("Holiday")
System.ComponentModel.NotifyParentPropertyAttribute()
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.DefaultValueAttribute()
public function get,set Date : System.DateTime |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Specifies the Date of the Holiday.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Holiday")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DefaultValueAttribute()]
public: __property System.DateTime get_Date();
public: __property void set_Date(
System.DateTime value
); |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Specifies the Date of the Holiday.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Holiday")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DefaultValueAttribute()]
public:
property System.DateTime Date {
System.DateTime get();
void set ( System.DateTime value);
} |
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