Class ExcelExporter
- java.lang.Object
-
- com.mendix.modules.exportmanager.excel.ExcelExporter
-
public class ExcelExporter extends java.lang.Object
Represents an exporter for Excel documents.
-
-
Constructor Summary
Constructors Constructor Description ExcelExporter()
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static IExcelGrid
createExcelGrid()
Deprecated.since 9.8.0, usecreateExcelGrid(IContext)
insteadstatic IExcelGrid
createExcelGrid(IContext context)
Creates a new Excel grid.static IMendixObject
generateXLS(IContext context, IMendixObject fileObject, java.lang.String fileName, java.util.List<IExcelGrid> grids)
Generates an Excel file from the given grids.static IMendixObject
generateXLS(IContext context, IMendixObject fileObject, java.lang.String fileName, java.util.List<java.lang.String> oqlQueries, boolean autoSizeColumns, java.util.List<java.lang.String> headerNames)
Generates an Excel file from the given OQL queries.
-
-
-
Method Detail
-
generateXLS
public static IMendixObject generateXLS(IContext context, IMendixObject fileObject, java.lang.String fileName, java.util.List<IExcelGrid> grids) throws CoreException
Generates an Excel file from the given grids.- Parameters:
context
- the context to use for access controlfileObject
- the FileDocument objectfileName
- the file namegrids
- the grids to be converted- Returns:
- the resulting FileDocument object containing the report
- Throws:
CoreException
- if generated the Excel file failed
-
generateXLS
public static IMendixObject generateXLS(IContext context, IMendixObject fileObject, java.lang.String fileName, java.util.List<java.lang.String> oqlQueries, boolean autoSizeColumns, java.util.List<java.lang.String> headerNames) throws CoreException
Generates an Excel file from the given OQL queries.- Parameters:
context
- the context to use for access controlfileObject
- the FileDocument objectfileName
- the file nameoqlQueries
- the OQL queriesautoSizeColumns
- indicates whether to size columns automaticallyheaderNames
- the column names- Returns:
- the resulting FileDocument object containing the report
- Throws:
CoreException
- if generating the Excel file failed
-
createExcelGrid
@Deprecated public static IExcelGrid createExcelGrid()
Deprecated.since 9.8.0, usecreateExcelGrid(IContext)
insteadCreates a new Excel grid.- Returns:
- the Excel grid
-
createExcelGrid
public static IExcelGrid createExcelGrid(IContext context)
Creates a new Excel grid.- Parameters:
context
- the context to use for access control- Returns:
- the Excel grid
-
-