simplexcel 2.2.0.60
See the version list below for details.
dotnet add package simplexcel --version 2.2.0.60
NuGet\Install-Package simplexcel -Version 2.2.0.60
<PackageReference Include="simplexcel" Version="2.2.0.60" />
paket add simplexcel --version 2.2.0.60
#r "nuget: simplexcel, 2.2.0.60"
// Install simplexcel as a Cake Addin #addin nuget:?package=simplexcel&version=2.2.0.60 // Install simplexcel as a Cake Tool #tool nuget:?package=simplexcel&version=2.2.0.60
Simplexcel
This is a simple .xlsx generator library for .net 4.5, .NET Standard 1.3 (or higher), and .NET Standard 2.0.
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).
Features
- 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
Usage
See USAGE.md for instructions how to use.
Changelog
2.2.0 (2018-02-24)
- 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.
2.1.0 (2017-09-25)
- 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.
2.0.5 (2017-09-23)
- 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.
2.0.4 (2017-09-17)
- 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.
2.0.3 (2017-09-08)
- 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.
2.0.2 (2017-06-17)
- Add additional validation when saving to a Stream. The stream must be seekable (and of course writeable), otherwise an Exception is thrown.
2.0.1 (2017-05-18)
- 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).
2.0.0 (2017-04-22)
- 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.
1.0.5 (2014-01-30)
- SharedStrings are sanitized to avoid XML Errors when using Escape chars (like 0x1B).
1.0.4 (2014-01-21)
- Workbook.Save throws an InvalidOperationException if there are no sheets.
1.0.3 (2013-08-20)
- Added support for external hyperlinks.
- Made Workbooks serializable using the .net DataContractSerializer.
1.0.2 (2013-01-10)
- Initial Public Release.
License
The MIT License (MIT)
Copyright (c) 2013-2017 Michael Stum, http://www.Stum.de opensource@stum.de
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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
- System.IO.Compression (>= 4.3.0)
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.1.0.195 | 37,792 | 5/1/2022 |
3.0.2.193 | 135,500 | 12/26/2020 |
3.0.1.184 | 40,000 | 11/20/2019 |
3.0.0.181 | 4,846 | 11/8/2019 |
2.3.0.174 | 1,016 | 11/2/2019 |
2.2.1.71 | 3,299 | 9/19/2018 |
2.2.0.60 | 10,170 | 2/24/2018 |
2.1.0.31 | 2,036 | 9/25/2017 |
2.0.5.23 | 1,203 | 9/24/2017 |
2.0.4.13 | 1,536 | 9/17/2017 |
2.0.3.6 | 1,618 | 9/7/2017 |
2.0.1 | 1,142 | 5/18/2017 |
2.0.0 | 1,116 | 4/22/2017 |
1.0.5 | 6,177 | 1/30/2014 |
1.0.4 | 1,294 | 1/21/2014 |
1.0.3 | 1,367 | 8/20/2013 |
1.0.2 | 1,608 | 1/10/2013 |