Gets or sets the first day of the week.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.BindableAttribute(Bindable=True, Direction=BindingDirection.OneWay)>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.DescriptionAttribute("Gets or sets the first day of the week.")>
Public Property FirstDayOfWeek As System.DayOfWeek |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As DateTimeFormatInfoWrapper
Dim value As System.DayOfWeek
instance.FirstDayOfWeek = value
value = instance.FirstDayOfWeek |
C# | |
---|
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Gets or sets the first day of the week.")]
public System.DayOfWeek FirstDayOfWeek {get; set;} |
Delphi | |
---|
public read-write property FirstDayOfWeek: System.DayOfWeek; |
JScript | |
---|
System.ComponentModel.BindableAttribute(Bindable=, Direction=BindingDirection.OneWay)
System.ComponentModel.NotifyParentPropertyAttribute()
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.DescriptionAttribute("Gets or sets the first day of the week.")
public function get,set FirstDayOfWeek : System.DayOfWeek |
Managed Extensions for C++ | |
---|
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Gets or sets the first day of the week.")]
public: __property System.DayOfWeek get_FirstDayOfWeek();
public: __property void set_FirstDayOfWeek(
System.DayOfWeek value
); |
C++/CLI | |
---|
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Gets or sets the first day of the week.")]
public:
property System.DayOfWeek FirstDayOfWeek {
System.DayOfWeek get();
void set ( System.DayOfWeek value);
} |
Property Value
A
DayOfWeek value representing the first day of the week. The default for
InvariantInfo 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