Please see #43
master | release |
---|---|
This is a simple .xlsx generator library for .net 4.5, .NET Standard 2.0, and .NET Standard 2.1.
It does not aim to implement the entirety of the Office Open XML Workbook format and all the small and big features Excel offers. Instead, it is meant as a way to handle common tasks that can't be handled by other workarounds (e.g., CSV Files or HTML Tables) and is fully supported under ASP.net (unlike, say, COM Interop which Microsoft explicitly doesn't support on a server).
- You can store numbers as numbers, so no more unwanted conversion to scientific notation on large numbers!
- You can store text that looks like a number as text, so no more truncation of leading zeroes because Excel thinks it's a number
- You can have multiple Worksheets
- You have basic formatting: Font Name/Size, Bold/Underline/Italic, Color, Border around a cell
- You can specify the size of cells
- Workbooks can be saved compressed or uncompressed (CPU Load vs. File Size)
- You can specify repeating rows and columns (from the top and left respectively), useful when printing.
- Fully supported in ASP.net and Windows Services
- Supports .net Core
See USAGE.md for instructions how to use.
- Support for Standard built-in number formats, which localize properly (PR #36 and #37)
- Support for AutoFilter (PR #35)
- Thanks to 0xced for these!
- Add
SourceLink
support
- Fix
TypeInitializationException
in SimplexcelVersion in some contexts (e.g., UWP, Xamarin) (Issue #30)
- Remove targeting netstandard1.3, add targeting for netstandard2.1
- The library is now signed and strongly named for improved compatibility
- The AssemblyVersion is
3.0.0.0
and will not change in the future - The AssemblyFileVersion and AssemblyInformationalVersion will contain the actual version number
- The actual signing key is checked in as
simplexcel_oss.snk
, and a dump of the public key and token is insimplexcel_oss.txt
- There is a static
SimplexcelVersion
class with some helpers:- PublicKeyToken is the public key token for the assembly (e.g., 65e777c740a5d92a)
- PublicKey is the full public key token for the assembly (e.g., 0024000004800000940000000602000000240000525341310...)
- VersionString is the AssemblyInformationalVersion as a string, which may include a suffix if it's a development version (e.g., 2.3.0.177-v3-dev)
- Version is the AssemblyFileVersion as a Version object, which does include any suffix (e.g., 2.3.0.177)
- The AssemblyVersion is
- No functional changes, just making sure that this is independent of future changes
- Add
Worksheet.FreezeTopLeft
method (by @bcopeland in PR #26) to freeze more than just the top row/left column - Support for Formulas, for example:
sheet.Cells["B4"] = Cell.Formula("MEDIAN(A:A)");
. See the test app for some examples
- Fixed bug where Background Color wasn't correctly applied to a Fill. (Issue 23)
- Add
IgnoredErrors
to aCell
, to disable Excel warnings (like "Number stored as text"). - If
LargeNumberHandlingMode.StoreAsText
is set on a sheet, the "Number stored as Text" warning is automatically disabled for that cell. - Add
Cell.Fill
property, which allows setting the Fill of the cell, including the background color, pattern type (diagonal, crosshatch, grid, etc.) and pattern color - Add
netstandard2.0
version, on top of the existingnetstandard1.3
andnet45
versions.
- Functional Change: Numbers with more than 11 digits are forced as Text by Default, because of a limitation in Excel. To restore the previous functionality, you can set
Worksheet.LargeNumberHandlingMode
toLargeNumberHandlingMode.None
. You can also useCell.IsLargeNumber
to check if a given number would be affected by this. - Functional Change:
Worksheet.Populate
/Worksheet.FromData
now also reads properties from base classes. Worksheet.Populate
/Worksheet.FromData
accept a new argument,cacheTypeColumns
which defaults to false. If set to true, then Simplexcel will cache the Reflection-based lookup of object properties. This is useful for if you have a few types that you create sheets from a lot.- You can add
[XlsxColumn]
to a Property so thatWorksheet.Populate
/Worksheet.FromData
can set the column name and a given column order. Caveat: If you setColumnIndex
on some, but not all Properties, the properties without aColumnIndex
will be on the right of the last assigned column, even if that means gaps. I recommend that you either setColumnIndex
on all properties or none. - You can add
[XlsxIgnoreColumn]
to a Property so thatWorksheet.Populate
/Worksheet.FromData
ignores it. - Added
Cell.HorizontalAlignment
andCell.VerticalAlignment
to allow setting the alignment of a cell (left/center/right/justify, top/middle/bottom/justify). - Added XmlDoc to Nuget package, so you should get Intellisense with proper comments now.
- Add support for manual page breaks. Call
Worksheet.InsertManualPageBreakAfterRow
orWorksheet.InsertManualPageBreakAfterColumn
with either the zero-based index of the row/column after which to create the break, or with a cell address (e.g., B5) to create the break below or to the left of that cell.
- Support for freezing panes. Right now, this is being kept simple: call either
Worksheet.FreezeTopRow
orWorksheet.FreezeLeftColumn
to freeze either the first row (1) or the leftmost column (A). - If a Stream is not seekable (e.g., HttpContext.Response.OutputStream), Simplexcel automatically creates a temporary MemoryStream as an intermediate.
- Add
Cell.FromObject
to make Cell creation easier by guessing the correct type. - Support
DateTime
cells, thanks to @mguinness and PR #16.
- Add
Worksheet.Populate<T>
method to fill a sheet with data. Caveats: Does not loot at inherited members, doesn't look at complex types. - Also add static
Worksheet.FromData<T>
method to create and populate the sheet in one.
- Add additional validation when saving to a Stream. The stream must be seekable (and of course writeable), otherwise an Exception is thrown.
- Fix Issue #12: Sanitizing Regex stripped out too many characters (like the Ampersand or Emojis). Note that certain Unicode characters only work on newer versions of Excel (e.g., Emojis work in Excel 2013 but not 2007 or 2010).
- Re-target to .net Framework 4.5 and .NET Standard 1.3.
- No longer use
System.Drawing.Color
but new typeSimplexcel.Color
should work. - Classes no longer use Data Contract serializer, hence no more
[DataContract]
,[DataMember]
, etc. attributes. - Remove
CompressionLevel
- the entire creation of the actual .xlsx file is re-done (no more dependency onSystem.IO.Packaging
) and compression is now a simple bool.
- SharedStrings are sanitized to avoid XML Errors when using Escape chars (like 0x1B).
- Workbook.Save throws an InvalidOperationException if there are no sheets.
- Added support for external hyperlinks.
- Made Workbooks serializable using the .net DataContractSerializer.
- Initial Public Release.
The MIT License (MIT)
Copyright (c) 2013-2017 Michael Stum, http://www.Stum.de [email protected] Contains contributions by @mguinness
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.