FindAppointmentsOptions FindAppointmentsOptions FindAppointmentsOptions FindAppointmentsOptions Class

Definition

Represents a set of options that modifies a query for appointments.

public : sealed class FindAppointmentsOptions : IFindAppointmentsOptionspublic sealed class FindAppointmentsOptions : IFindAppointmentsOptionsPublic NotInheritable Class FindAppointmentsOptions Implements IFindAppointmentsOptions// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Constructors

FindAppointmentsOptions() FindAppointmentsOptions() FindAppointmentsOptions() FindAppointmentsOptions()

Creates a new instance of the FindAppointmentsOptions class.

public : FindAppointmentsOptions()public FindAppointmentsOptions()Public Sub New()// You can use this method in JavaScript.

Properties

CalendarIds CalendarIds CalendarIds CalendarIds

Gets the list of calendar IDs that will be included in the find appointments query. If this list is empty, then appointments will be returned from all calendars.

public : IVector<string> CalendarIds { get; }public IList<string> CalendarIds { get; }Public ReadOnly Property CalendarIds As IList<string>// You can use this property in JavaScript.
Value
IVector<PlatForm::String> IList<string> IList<string> IList<string>

A list of calendar IDs.

FetchProperties FetchProperties FetchProperties FetchProperties

Gets the list of appointment property names that will be populated with data in the find appointment query results.

public : IVector<string> FetchProperties { get; }public IList<string> FetchProperties { get; }Public ReadOnly Property FetchProperties As IList<string>// You can use this property in JavaScript.
Value
IVector<PlatForm::String> IList<string> IList<string> IList<string>

A list of appointment property names.

Remarks

The following properties are always returned from a find appointment query, even if they are not explicitly specified in the FetchProperties list.

The list of valid properties is documented in the AppointmentProperties class.

IncludeHidden IncludeHidden IncludeHidden IncludeHidden

Gets or sets a value indicating whether appointments belonging to hidden calendars will be included in the find appointments query result.

public : PlatForm::Boolean IncludeHidden { get; set; }public bool IncludeHidden { get; set; }Public ReadWrite Property IncludeHidden As bool// You can use this property in JavaScript.
Value
PlatForm::Boolean bool bool bool

A value indicating whether appointments belonging to hidden calendars will be included in the find appointments query result.

MaxCount MaxCount MaxCount MaxCount

Gets or sets the maximum number of appointments that should be included in the find appointments query result.

public : unsigned int MaxCount { get; set; }public uint MaxCount { get; set; }Public ReadWrite Property MaxCount As uint// You can use this property in JavaScript.
Value
unsigned int uint uint uint

The maximum number of appointments that should be included in the find appointments query result.