Class NSRedLetterSummary

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

Constructors

NSRedLetterSummary()

Initializes a new instance of the NSRedLetterSummary class.

Declaration

NSRedLetterSummary

Methods

GetIsOtherCountryHoliday()

Declaration

Bool GetIsOtherCountryHoliday()

Examples

NSRedLetterSummary thing;
Bool isOtherCountryHoliday = thing.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.

GetIsOwnCountryHoliday()

Declaration

Bool GetIsOwnCountryHoliday()

Examples

NSRedLetterSummary thing;
Bool isOwnCountryHoliday = thing.GetIsOwnCountryHoliday();

Returns

Type Description
Bool If true, this day is a holiday in the country of the given associate.

SetIsOtherCountryHoliday(Bool)

Declaration

Void SetIsOtherCountryHoliday(Bool isOtherCountryHoliday)

Examples

NSRedLetterSummary thing;
Bool isOtherCountryHoliday;
thing.SetIsOtherCountryHoliday(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

SetIsOwnCountryHoliday(Bool)

Declaration

Void SetIsOwnCountryHoliday(Bool isOwnCountryHoliday)

Examples

NSRedLetterSummary thing;
Bool isOwnCountryHoliday;
thing.SetIsOwnCountryHoliday(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