RegionalSettings.WorkDays - Propriété
Gets and sets a number that represents the work days of Web site calendars.
Espace de noms : Microsoft.SharePoint.Client
Assemblys : Microsoft.SharePoint.Client.Silverlight (dans Microsoft.SharePoint.Client.Silverlight.dll); Microsoft.SharePoint.Client.Phone (dans Microsoft.SharePoint.Client.Phone.dll) Microsoft.SharePoint.Client (dans Microsoft.SharePoint.Client.dll)
Syntaxe
'Déclaration
Public Property WorkDays As Short
Get
Set
'Utilisation
Dim instance As RegionalSettings
Dim value As Short
value = instance.WorkDays
instance.WorkDays = value
public short WorkDays { get; set; }
Valeur de propriété
Type : System.Int16
The work days of the Web site calendars.
Remarques
The WorkDays property contains a value that represents the work days in the user interface (UI). This value is converted to its binary value, and it is read from left to right starting on Sunday and ending on Saturday. The days that have 1 are the work days in the UI.
The following table shows possible values.
Property value |
Binary value |
Work days |
---|---|---|
127 |
1111111 |
All |
0 |
0000000 |
None |
64 |
1000000 |
Sunday |
32 |
0100000 |
Monday |
16 |
0010000 |
Tuesday |
8 |
0001000 |
Wednesday |
4 |
0000100 |
Thursday |
2 |
0000010 |
Friday |
1 |
0000001 |
Sunday |
62 |
0111110 |
Monday to Friday |