Class MonthCellLoadedEventArgs
The Month Cell Loaded Event Argument contains properties to customize and configure the loaded month cell and returns the details of loaded month cell.
Inheritance
Namespace: Syncfusion.SfSchedule.XForms
Assembly: Syncfusion.SfSchedule.XForms.dll
Syntax
public class MonthCellLoadedEventArgs : EventArgs
Constructors
MonthCellLoadedEventArgs()
Initializes a new instance of the MonthCellLoadedEventArgs class.
Declaration
public MonthCellLoadedEventArgs()
Properties
appointments
Gets or sets appointments collection for the loaded month cell view as the type of IEnumerable.
Declaration
public IEnumerable appointments { get; set; }
Property Value
Type |
---|
System.Collections.IEnumerable |
cellStyle
Gets or sets Cell style and it's properties used to customize the appearance of loaded month cell view.
Declaration
public CellStyle cellStyle { get; set; }
Property Value
Type |
---|
CellStyle |
date
Gets or sets Date value of the loaded month cell as a type of Date time.
Declaration
public DateTime date { get; set; }
Property Value
Type |
---|
System.DateTime |
isBlackOutDate
Gets or sets a value indicating whether that the loaded month cell date time value is black out date or not.
Declaration
public bool isBlackOutDate { get; set; }
Property Value
Type |
---|
System.Boolean |
isNextMonthDate
Gets or sets a value indicating whether that the loaded month cell date time value is next month date or not.
Declaration
public bool isNextMonthDate { get; set; }
Property Value
Type |
---|
System.Boolean |
isPreviousMonthDate
Gets or sets a value indicating whether that the loaded month cell date time value is previous month date or not.
Declaration
public bool isPreviousMonthDate { get; set; }
Property Value
Type |
---|
System.Boolean |
isToday
Gets or sets a value indicating whether that the loaded month cell date time value is today date or not.
Declaration
public bool isToday { get; set; }
Property Value
Type |
---|
System.Boolean |
view
Gets or sets view it replaces the loaded month cell's default UI view with the given Custom UI view.
Declaration
public View view { get; set; }
Property Value
Type |
---|
Xamarin.Forms.View |