Calendar Sample Files
In order to simulate the calendar of a device you can use a sample calendar file that has the XML structure shown in the listing below. You can then specify, in the Simulation tab of the Options dialog, that this file is to be used for simulations involving the Access Calendar action. Alternatively, you can use your Microsoft Outlook calendar for the simulation. The setting that specifies which of these two alternatives to use is in the Simulation pane of the Options dialog.
<?xml version="1.0" encoding="UTF-8"?> <Root> <Calendar Id="1" Name="Business"> <Event Id="1" Title="Quarterly Meeting" Start="2018-04-04" End="2018-04-04" AllDay="true()" Location="Meeting Room 2"> <Attendee Name="Bob" Status="Accepted" Type="Required" Relationship="Speaker"/> </Event> <Event Id="2" Title="New Customer Lunch" Start="2018-05-14T12:30:00" End="2018-05-14T14:00:00" Location="Sushi Restaurant"> <Attendee Name="Alice" Status="Accepted" Type="Optional" Relationship="Attendee"/> </Event> </Calendar> <Calendar Id="2" Name="Private"> <Event Id="1" Title="Family Dinner" Start="2018-05-18T19:00:00" End="2018-05-18T23:00:00" Location="Home"/> <Event Id="2" Title="Summer Vacation" Start="2018-07-09" End="2018-07-22" AllDay="true()" Location="Home"/> </Calendar> </Root>
|
Note: | In the Microsoft Outlook calendar, attendee status is visible only to the organizer of the event. So you will not be able to see the attendee status of events that were not organized by you. |