Class CalendarNode
The model that is visualized in the calendar's views.
Inherited Members
Namespace: Telerik.Maui.Controls.Calendar
Assembly: Telerik.Maui.Controls.dll
Syntax
public class CalendarNode : NotifyPropertyChangedBase, INotifyPropertyChanged
Constructors
CalendarNode()
Declaration
public CalendarNode()
Properties
Calendar
Gets the calendar that owns the node.
Declaration
public object Calendar { get; }
Property Value
System.Object
|
Date
Gets the date each node holds and gets displayed in the calendar's views.
Declaration
public Nullable<DateTime> Date { get; }
Property Value
System.Nullable<System.DateTime>
|
IsEnabled
Gets a value indicating whether the node is enabled.
Declaration
public bool IsEnabled { get; }
Property Value
System.Boolean
|
IsMouseOver
Gets a value indicating wheter the mouse is over the date.
Declaration
public bool IsMouseOver { get; }
Property Value
System.Boolean
|
IsOutOfScope
Gets a value indicating whether the node is out of scope.
Declaration
public bool IsOutOfScope { get; }
Property Value
System.Boolean
|
IsSelected
Gets a value indicating whether the node is selected.
Declaration
public bool IsSelected { get; }
Property Value
System.Boolean
|
IsToday
Gets a value indicating whether the date is today.
Declaration
public bool IsToday { get; }
Property Value
System.Boolean
|
IsVisible
Gets a value indicating whether the node is visible.
Declaration
public bool IsVisible { get; }
Property Value
System.Boolean
|
SelectionState
Gets a value indicating the state of the date when selected.
Declaration
public CalendarNodeSelectionState SelectionState { get; }
Property Value
CalendarNodeSelectionState
|
Text
Gets the text that gets displayed in the calendar's views.
Declaration
public string Text { get; }
Property Value
System.String
|