Appointment.AllDay Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
property bool AllDay { bool get(); void set(bool value); };
bool AllDay();
void AllDay(bool value);
public bool AllDay { get; set; }
var boolean = appointment.allDay;
appointment.allDay = boolean;
Public Property AllDay As Boolean
Property Value
Boolean
bool
A Boolean value that indicates whether the appointment will last all day. TRUE indicates that the appointment will last all day; otherwise FALSE.
Windows requirements
App capabilities |
appointmentsSystem
|
Remarks
When creating an appointment with AllDay set to true, you should set the StartTime of the appointment to midnight (00:00:00).