Class NSRedLetterDetails
Red-letter day text details, all the texts related to the given day.
Constructors
NSRedLetterDetails()
Initializes a new instance of the NSRedLetterDetails class.
Declaration
NSRedLetterDetails Methods
GetOtherCountryDayTexts()
Declaration
String[] GetOtherCountryDayTexts() Examples
NSRedLetterDetails thing;
String[] otherCountryDayTexts = thing.GetOtherCountryDayTexts();
Returns
| Type | Description |
| String[] | Red-letter day texts for other countries than the associates' own country. |
GetOwnCountryDayTexts()
Declaration
String[] GetOwnCountryDayTexts() Examples
NSRedLetterDetails thing;
String[] ownCountryDayTexts = thing.GetOwnCountryDayTexts();
Returns
| Type | Description |
| String[] | Array, possibly empty, of the texts related to one day in the red-letter system. |
SetOtherCountryDayTexts(String[])
Declaration
Void SetOtherCountryDayTexts(String[] otherCountryDayTexts) Examples
NSRedLetterDetails thing;
String[] otherCountryDayTexts;
thing.SetOtherCountryDayTexts(otherCountryDayTexts);
Parameters
| Type | Name | Description |
| String[] | otherCountryDayTexts | Red-letter day texts for other countries than the associates' own country. |
Returns
| Type | Description |
| Void |
SetOwnCountryDayTexts(String[])
Declaration
Void SetOwnCountryDayTexts(String[] ownCountryDayTexts) Examples
NSRedLetterDetails thing;
String[] ownCountryDayTexts;
thing.SetOwnCountryDayTexts(ownCountryDayTexts);
Parameters
| Type | Name | Description |
| String[] | ownCountryDayTexts | Array, possibly empty, of the texts related to one day in the red-letter system. |
Returns
| Type | Description |
| Void |