Class CalendarMark

Definition

Namespace:
ElmSharp
Assembly:
ElmSharp.dll
API Level:
preview

The CalendarMark is an item for marking a Calendar's type, date, and repeat type.

C#
Copy
public class CalendarMark
Inheritance
CalendarMark

Constructors

View Source

CalendarMark(String, DateTime, CalendarMarkRepeatType)

Creates and initializes a new instance of the CalendarMark class.

Declaration
C#
Copy
public CalendarMark(string type, DateTime date, CalendarMarkRepeatType repeat)
Parameters
Type Name Description
System.String type

Type of mark.

System.DateTime date

Date of inclusion of the mark.

CalendarMarkRepeatType repeat

Repeat type.

API Level: preview

Fields

View Source

Date

A time struct to represent the date of inclusion of the mark.

Declaration
C#
Copy
public DateTime Date
Field Value
Type Description
System.DateTime
API Level: preview
View Source

Repeat

Repeats the event following this periodicity.

Declaration
C#
Copy
public CalendarMarkRepeatType Repeat
Field Value
Type Description
CalendarMarkRepeatType
API Level: preview
View Source

Type

A string used to define the type of mark.

Declaration
C#
Copy
public string Type
Field Value
Type Description
System.String
API Level: preview