Skip to main content
A newer version of this page is available. .

WorkdaysOptions.LoadHolidays(String, String) Method

Imports holidays from the specified file for the selected location.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

public void LoadHolidays(
    string fileName,
    string location
)

Parameters

Name Type Description
fileName String

A String value, specifying the file name.

location String

A String value, specifying the location.

Remarks

Apart from the capability to manually populate the collection of holidays (via the WorkdaysOptions.Holidays property), you can call the LoadHolidays method, to import holidays in the DevExpress Scheduler (.xml) or Microsoft Office Outlook® (.hol) formats from a file, for the specified location.

If you have Microsoft® Outlook installed on your machine, it may be useful to obtain the holidays list, which is shipped with its installation. For example, if you’ve installed Microsoft Office® 2007, by default this file is located in the following path:

C:\Program Files\Microsoft Office\Office12\1033\Outlook.hol

This file contains all known holidays for many countries (marked in square brackets and called as locations) in the following format:

[United States] 168

Christmas Day,2006/12/25

Christmas Day,2007/12/25

Christmas Day,2008/12/25

Christmas Day,2009/12/25

Christmas Day,2010/12/25

Christmas Day,2011/12/25

Christmas Day,2012/12/25

Christmas Eve,2006/12/24

So, you can obtain a collection of days which are treated as holidays for the specified country.

For more information, refer to Data Aggregation.

See Also