Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.1 KB

overview.md

File metadata and controls

37 lines (26 loc) · 1.1 KB

Overview

Attributes

Factory

The XLeratorFactory is used to create a new Instance of any ExcelUtility.

Use the XLeratorFactory.CreateFactory method to create a new Factory. Also see XLeratorOptions Here is an example;

var options = new XLeratorOptions 
{
    FilePath = 'path/to/file.xsls'
}
var factory = XLeratorFactory<YourClass>.CreateFactory(options);

The Generic Type is the class that you want to Serialize or Deserialize.

  • CreateExcelCreator: returns a new IExcelCreator
  • CreateExcelEditor: returns a new IExcelEditor
  • CreateExcelIterator: returns a new IExcelIterator
  • CreateExcelReader: returns a new IExcelReader

Excel Utilities

The following functionalities are possible to use. Also see Factory.

Plans for the future

  • option for custom Mapper