Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

2. At the top of the class definition, define a global variations variable for the ExcelApplication, ExcelTemplate, and Workbook objects: ExcelTemplate object.

Code Block
private ExcelApplication xla;
private ExcelTemplate xlt;
private Workbook wb;
Info
titleFollowing the Sample Code

In the sample code, you will also see List<string> selectedCountries defined with the global variables. This is the list that will contain the countries the user selects from the web form in the sample code.

...