ComponentOne ASP.NET MVC Controls
wijmo.xlsx Module
File
wijmo.xlsx.js
Module
wijmo.xlsx

Classes

Interfaces

Enums

Methods

Methods

useJSZip

useJSZip(jszip: any): void

NOTE: This function is OBSOLETE and retained for compatibility. It is no longer needed because wijmo.xlsx module loads jszip module automatically. You should only ensure that jszip module is installed in your application.

Defines a reference to JSZip module that will be used by the Wijmo xlsx export modules.

This method should be used in npm modules based applications to provide wijmo.xlsx module with a reference to the JSZip module retrieved using the ES6 import statement. For example:

import * as JSZip from 'jszip';
import * as wjcXlsx from 'wijmo/wijmo.xlsx';
wjcXlsx.useJSZip(JSZip);
Parameters
  • jszip: any

    Reference to the JSZip constructor function.

Returns
void