Specifies the calendar's first day of week.
Specifies the calendar's first day of week.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Specifies the calendar's first day of week.")>
<ISNet.Serialization.XmlSerializableAttribute()>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.CategoryAttribute("Calendar")>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.DefaultValueAttribute()>
Public Property FirstDayOfWeek As System.DayOfWeek |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebSchedulerCalendarSettings
Dim value As System.DayOfWeek
instance.FirstDayOfWeek = value
value = instance.FirstDayOfWeek |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Specifies the calendar's first day of week.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Calendar")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public System.DayOfWeek FirstDayOfWeek {get; set;} |
Delphi | |
---|
public read-write property FirstDayOfWeek: System.DayOfWeek; |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Specifies the calendar's first day of week.")
ISNet.Serialization.XmlSerializableAttribute()
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.CategoryAttribute("Calendar")
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.DefaultValueAttribute()
public function get,set FirstDayOfWeek : System.DayOfWeek |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Specifies the calendar's first day of week.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Calendar")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public: __property System.DayOfWeek get_FirstDayOfWeek();
public: __property void set_FirstDayOfWeek(
System.DayOfWeek value
); |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Specifies the calendar's first day of week.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Calendar")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public:
property System.DayOfWeek FirstDayOfWeek {
System.DayOfWeek get();
void set ( System.DayOfWeek value);
} |
Property Value
The default value is Sunday.
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