CalendarViewDayItemChangingEventArgs CalendarViewDayItemChangingEventArgs CalendarViewDayItemChangingEventArgs CalendarViewDayItemChangingEventArgs Class

Definition

Provides data for the CalendarViewDayItemChanging event.

public : sealed class CalendarViewDayItemChangingEventArgs : ICalendarViewDayItemChangingEventArgspublic sealed class CalendarViewDayItemChangingEventArgs : ICalendarViewDayItemChangingEventArgsPublic NotInheritable Class CalendarViewDayItemChangingEventArgs Implements ICalendarViewDayItemChangingEventArgs// This API is not available in Javascript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Properties

InRecycleQueue InRecycleQueue InRecycleQueue InRecycleQueue

Gets a value that indicates whether this container is in the recycle queue of the CalendarView and is not being used to visualize a calendar item.

public : PlatForm::Boolean InRecycleQueue { get; }public bool InRecycleQueue { get; }Public ReadOnly Property InRecycleQueue As bool// This API is not available in Javascript.
Value
PlatForm::Boolean bool bool bool

true if the container is in the recycle queue of the CalendarView; otherwise, false.

Item Item Item Item

Gets the calendar day item associated with this container.

public : CalendarViewDayItem Item { get; }public CalendarViewDayItem Item { get; }Public ReadOnly Property Item As CalendarViewDayItem// This API is not available in Javascript.
Value
CalendarViewDayItem CalendarViewDayItem CalendarViewDayItem CalendarViewDayItem

The CalendarViewDayItem associated with this container, or null if no item is associated with this container.

Phase Phase Phase Phase

Gets the number of times this container and day item pair has been called.

public : unsigned int Phase { get; }public uint Phase { get; }Public ReadOnly Property Phase As uint// This API is not available in Javascript.
Value
unsigned int uint uint uint

The number of times this container and day item pair has been called.

Methods

RegisterUpdateCallback(UInt32, TypedEventHandler) RegisterUpdateCallback(UInt32, TypedEventHandler) RegisterUpdateCallback(UInt32, TypedEventHandler) RegisterUpdateCallback(UInt32, TypedEventHandler)

Registers the event handler to be called again during the specified phase.

public : void RegisterUpdateCallback(unsigned int callbackPhase, TypedEventHandler<CalendarView, CalendarViewDayItemChangingEventArgs> callback)public void RegisterUpdateCallback(UInt32 callbackPhase, TypedEventHandler<CalendarView, CalendarViewDayItemChangingEventArgs> callback)Public Function RegisterUpdateCallback(callbackPhase As UInt32, callback As TypedEventHandler<CalendarView, CalendarViewDayItemChangingEventArgs>) As void// This API is not available in Javascript.
Parameters
callbackPhase
unsigned int UInt32 UInt32 UInt32

The phase during which the callback should occur.

See Also

RegisterUpdateCallback(TypedEventHandler) RegisterUpdateCallback(TypedEventHandler) RegisterUpdateCallback(TypedEventHandler) RegisterUpdateCallback(TypedEventHandler)

Registers the event handler to be called again during the next phase.

public : void RegisterUpdateCallback(TypedEventHandler<CalendarView, CalendarViewDayItemChangingEventArgs> callback)public void RegisterUpdateCallback(TypedEventHandler<CalendarView, CalendarViewDayItemChangingEventArgs> callback)Public Function RegisterUpdateCallback(callback As TypedEventHandler<CalendarView, CalendarViewDayItemChangingEventArgs>) As void// This API is not available in Javascript.
Parameters
See Also