Class SFMonthCellStyle
Represents a class which has properties for customizing the appearance of month cells, each cell displays the date of the specified month.Current month cell's text color and background can be differentiated from the previous and next month cells. Current date of the month can also be differentiated.
Inheritance
Implements
Namespace: Syncfusion.SfSchedule.iOS
Assembly: Syncfusion.SfSchedule.iOS.dll
Syntax
public class SFMonthCellStyle : Object, INotifyPropertyChanged
Constructors
SFMonthCellStyle()
Initializes a new instance of the SFMonthCellStyle class.
Declaration
public SFMonthCellStyle()
Properties
BackgroundColor
Gets or sets the background color of month cell.
Declaration
public UIColor BackgroundColor { get; set; }
Property Value
| Type |
|---|
| UIKit.UIColor |
NextMonthBackgroundColor
Gets or sets the background color for next month cells.
Declaration
public UIColor NextMonthBackgroundColor { get; set; }
Property Value
| Type |
|---|
| UIKit.UIColor |
NextMonthTextColor
Gets or sets the text color for next month cell's text.
Declaration
public UIColor NextMonthTextColor { get; set; }
Property Value
| Type |
|---|
| UIKit.UIColor |
PreviousMonthBackgroundColor
Gets or sets the background color for previous month cells.
Declaration
public UIColor PreviousMonthBackgroundColor { get; set; }
Property Value
| Type |
|---|
| UIKit.UIColor |
PreviousMonthTextColor
Gets or sets the text color for previous month cell's text.
Declaration
public UIColor PreviousMonthTextColor { get; set; }
Property Value
| Type |
|---|
| UIKit.UIColor |
TextColor
Gets or sets the color for text in the month cell.
Declaration
public UIColor TextColor { get; set; }
Property Value
| Type |
|---|
| UIKit.UIColor |
TextStyle
Gets or sets the font representation for text in the month cell.
Declaration
public UIFont TextStyle { get; set; }
Property Value
| Type |
|---|
| UIKit.UIFont |
TodayBackgroundColor
Gets or sets the background color for current date cell of month.
Declaration
public UIColor TodayBackgroundColor { get; set; }
Property Value
| Type |
|---|
| UIKit.UIColor |
TodayTextColor
Gets or sets the text color for current date text of month cell.
Declaration
public UIColor TodayTextColor { get; set; }
Property Value
| Type |
|---|
| UIKit.UIColor |
Methods
OnPropertyChanged(String)
Provides the data for the property changed event.
Declaration
protected virtual void OnPropertyChanged(string propertyName)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | propertyName | Property name. |
Events
PropertyChanged
Event handler which is raised when a property is changed.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
| Type |
|---|
| System.ComponentModel.PropertyChangedEventHandler |