Class Ecommerce.ExportExcel.ExportExcelCreatedArgs
- Namespace
- Dynamicweb.Ecommerce.Notifications
- Assembly
- Dynamicweb.Ecommerce.dll
Provides the ability to modify excel package after it was formed by excel export provider. Arguments passed to AfterExportExcel notification
public class Ecommerce.ExportExcel.ExportExcelCreatedArgs : NotificationArgs
- Inheritance
-
Ecommerce.ExportExcel.ExportExcelCreatedArgs
- Inherited Members
Constructors
ExportExcelCreatedArgs(ExportExcelFormat, string, IDictionary<string, string>)
Initializes a New instance of an ExportExcelCreatedArgs.
public ExportExcelCreatedArgs(Ecommerce.ExportExcel.ExportExcelCreatedArgs.ExportExcelFormat format, string excelFilePath, IDictionary<string, string> columnNamesMapping)
Parameters
format
Ecommerce.ExportExcel.ExportExcelCreatedArgs.ExportExcelFormatValue indicating what the Ecommerce.ExportExcel.ExportExcelCreatedArgs.ExportExcelFormat of current excel export notification.
excelFilePath
stringThe path of excel package with export data.
columnNamesMapping
IDictionary<string, string>The mapping dictionary of custom column headers.
Properties
ColumnNamesMapping
Gets the mapping dictionary of custom column headers specified during the export.
public IDictionary<string, string> ColumnNamesMapping { get; }
Property Value
ExcelFilePath
Gets the path for excel package with export data.
public string ExcelFilePath { get; }
Property Value
Format
Gets Ecommerce.ExportExcel.ExportExcelCreatedArgs.ExportExcelFormat of current excel export notification.
public Ecommerce.ExportExcel.ExportExcelCreatedArgs.ExportExcelFormat Format { get; }