Class NSRedLetterSummary
Summary of red-letter day information - holiday in own country, and in other countries known to the system.
Syntax
Constructors
NSRedLetterSummary()
Initializes a new instance of the NSRedLetterSummary class.
Declaration
NSRedLetterSummary
Methods
GetIsOtherCountryHoliday()
Summary of red-letter day information - holiday in own country, and in other countries known to the system.
Declaration
Bool GetIsOtherCountryHoliday()
Returns
Type | Description |
---|---|
Bool | If true, this day is a holiday in at least one of the countries that has defined associates in the system, but not in the country of the associate whose diary is being scanned. |
Examples
NSRedLetterSummary thing;
Bool isOtherCountryHoliday = thing.GetIsOtherCountryHoliday();
GetIsOwnCountryHoliday()
Summary of red-letter day information - holiday in own country, and in other countries known to the system.
Declaration
Bool GetIsOwnCountryHoliday()
Returns
Type | Description |
---|---|
Bool | If true, this day is a holiday in the country of the given associate. |
Examples
NSRedLetterSummary thing;
Bool isOwnCountryHoliday = thing.GetIsOwnCountryHoliday();
SetIsOtherCountryHoliday(Bool)
Summary of red-letter day information - holiday in own country, and in other countries known to the system.
Declaration
Void SetIsOtherCountryHoliday(Bool isOtherCountryHoliday)
Parameters
Type | Name | Description |
---|---|---|
Bool | isOtherCountryHoliday | If true, this day is a holiday in at least one of the countries that has defined associates in the system, but not in the country of the associate whose diary is being scanned. |
Returns
Type | Description |
---|---|
Void |
Examples
NSRedLetterSummary thing;
Bool isOtherCountryHoliday;
thing.SetIsOtherCountryHoliday(isOtherCountryHoliday);
SetIsOwnCountryHoliday(Bool)
Summary of red-letter day information - holiday in own country, and in other countries known to the system.
Declaration
Void SetIsOwnCountryHoliday(Bool isOwnCountryHoliday)
Parameters
Type | Name | Description |
---|---|---|
Bool | isOwnCountryHoliday | If true, this day is a holiday in the country of the given associate. |
Returns
Type | Description |
---|---|
Void |
Examples
NSRedLetterSummary thing;
Bool isOwnCountryHoliday;
thing.SetIsOwnCountryHoliday(isOwnCountryHoliday);