Share via


AppointmentDaysOfWeek Enum

Definition

Specifies the days of the week on which an appointment occurs.

This enumeration supports a bitwise combination of its member values.

public enum class AppointmentDaysOfWeek
/// [System.Flags]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class AppointmentDaysOfWeek
[System.Flags]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum AppointmentDaysOfWeek
var value = Windows.ApplicationModel.Appointments.AppointmentDaysOfWeek.none
Public Enum AppointmentDaysOfWeek
Inheritance
AppointmentDaysOfWeek
Attributes

Windows requirements

Device family
Windows 10 (introduced in 10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v1.0)
App capabilities
appointmentsSystem

Fields

Name Value Description
None 0

The appointment doesn't occur on any days of the week.

Sunday 1

The appointment occurs on Sunday.

Monday 2

The appointment occurs on Monday.

Tuesday 4

The appointment occurs on Tuesday.

Wednesday 8

The appointment occurs on Wednesday.

Thursday 16

The appointment occurs on Thursday.

Friday 32

The appointment occurs on Friday.

Saturday 64

The appointment occurs on Saturday.

Applies to

See also