Class NSRedLetterInformationListItem

Detailed information on red-letter days, including both holidays and other days with their individual texts.

Constructors

NSRedLetterInformationListItem()

Initializes a new instance of the NSRedLetterInformationListItem class.

Declaration

NSRedLetterInformationListItem

Methods

GetDate()

Declaration

DateTime GetDate()

Examples

NSRedLetterInformationListItem thing;
DateTime date = thing.GetDate();

Returns

Type Description
DateTime Date that this item is valid for; there is exactly one item per date, ordered by date.

GetRedLetterDetails()

Declaration

NSRedLetterDetails GetRedLetterDetails()

Examples

NSRedLetterInformationListItem thing;
NSRedLetterDetails redLetterDetails = thing.GetRedLetterDetails();

Returns

Type Description
NSRedLetterDetails Red-letter day text details, all the texts related to the given day.

GetRedLetterInformation()

Declaration

NSRedLetterSummary GetRedLetterInformation()

Examples

NSRedLetterInformationListItem thing;
NSRedLetterSummary redLetterInformation = thing.GetRedLetterInformation();

Returns

Type Description
NSRedLetterSummary Summary of red-letter day information* holiday in own country, and in other countries known to the system.

SetDate(DateTime)

Declaration

Void SetDate(DateTime date)

Examples

NSRedLetterInformationListItem thing;
DateTime date;
thing.SetDate(date);

Parameters

Type Name Description
DateTime date Date that this item is valid for; there is exactly one item per date, ordered by date.

Returns

Type Description
Void

SetRedLetterDetails(NSRedLetterDetails)

Declaration

Void SetRedLetterDetails(NSRedLetterDetails redLetterDetails)

Examples

NSRedLetterInformationListItem thing;
NSRedLetterDetails redLetterDetails;
thing.SetRedLetterDetails(redLetterDetails);

Parameters

Type Name Description
NSRedLetterDetails redLetterDetails Red-letter day text details, all the texts related to the given day.

Returns

Type Description
Void

SetRedLetterInformation(NSRedLetterSummary)

Declaration

Void SetRedLetterInformation(NSRedLetterSummary redLetterInformation)

Examples

NSRedLetterInformationListItem thing;
NSRedLetterSummary redLetterInformation;
thing.SetRedLetterInformation(redLetterInformation);

Parameters

Type Name Description
NSRedLetterSummary redLetterInformation Summary of red-letter day information, holiday in own country, and in other countries known to the system.

Returns

Type Description
Void