Class NSRedLetterInformationListItem
Detailed information on red-letter days, including both holidays and other days with their individual texts.
Syntax
Constructors
NSRedLetterInformationListItem()
Initializes a new instance of the NSRedLetterInformationListItem class.
Declaration
NSRedLetterInformationListItem
Methods
GetDate()
Detailed information on red-letter days, including both holidays and other days with their individual texts.
Declaration
DateTime GetDate()
Returns
Type | Description |
---|---|
DateTime | Date that this item is valid for; there is exactly one item per date, ordered by date. |
Examples
NSRedLetterInformationListItem thing;
DateTime date = thing.GetDate();
GetRedLetterDetails()
Detailed information on red-letter days, including both holidays and other days with their individual texts.
Declaration
NSRedLetterDetails GetRedLetterDetails()
Returns
Type | Description |
---|---|
NSRedLetterDetails | Red-letter day text details, all the texts related to the given day. |
Examples
NSRedLetterInformationListItem thing;
NSRedLetterDetails redLetterDetails = thing.GetRedLetterDetails();
GetRedLetterInformation()
Detailed information on red-letter days, including both holidays and other days with their individual texts.
Declaration
NSRedLetterSummary GetRedLetterInformation()
Returns
Type | Description |
---|---|
NSRedLetterSummary | Summary of red-letter day information* holiday in own country, and in other countries known to the system. |
Examples
NSRedLetterInformationListItem thing;
NSRedLetterSummary redLetterInformation = thing.GetRedLetterInformation();
SetDate(DateTime)
Detailed information on red-letter days, including both holidays and other days with their individual texts.
Declaration
Void SetDate(DateTime 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 |
Examples
NSRedLetterInformationListItem thing;
DateTime date;
thing.SetDate(date);
SetRedLetterDetails(NSRedLetterDetails)
Detailed information on red-letter days, including both holidays and other days with their individual texts.
Declaration
Void SetRedLetterDetails(NSRedLetterDetails redLetterDetails)
Parameters
Type | Name | Description |
---|---|---|
NSRedLetterDetails | redLetterDetails | Red-letter day text details, all the texts related to the given day. |
Returns
Type | Description |
---|---|
Void |
Examples
NSRedLetterInformationListItem thing;
NSRedLetterDetails redLetterDetails;
thing.SetRedLetterDetails(redLetterDetails);
SetRedLetterInformation(NSRedLetterSummary)
Detailed information on red-letter days, including both holidays and other days with their individual texts.
Declaration
Void SetRedLetterInformation(NSRedLetterSummary 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 |
Examples
NSRedLetterInformationListItem thing;
NSRedLetterSummary redLetterInformation;
thing.SetRedLetterInformation(redLetterInformation);