ASP.NET MVC Controls
IFlexGridXlsxOptions Interface
File
wijmo.grid.xlsx.js
Module
wijmo.grid.xlsx

FlexGrid Xlsx conversion options

Properties

Properties

activeWorksheet

Index or name of the active sheet in the xlsx file.

Type
any

includeCellStyles

Indicates whether cells styling should be included in the generated xlsx file.

Type
boolean

includeColumnHeaders

Indicates whether to include column headers as first rows in the generated xlsx file.

Type
boolean

includeColumns

A callback to indicate which columns of FlexGrid need be included or omitted during exporting.

For example:

// This sample excludes the 'country' column from export.
 

// JavaScript
wijmo.grid.xlsx.FlexGridXlsxConverter.save(grid, {
  includeColumns: function(column) {
     return column.binding !== 'country';
  }
}
Type

includeRowHeaders

Indicates whether to include column headers as first rows in the generated xlsx file.

Type
boolean

sheetIndex

The index of the sheet in the workbook.

Type
number

sheetName

The name of the sheet.

Type
string

sheetVisible

The visible of the sheet.

Type
boolean

 

 


Copyright © GrapeCity, inc. All rights reserved.

Product Support Forum |  Documentation Feedback