EzElement.EzOpenXml 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package EzElement.EzOpenXml --version 1.0.1
NuGet\Install-Package EzElement.EzOpenXml -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EzElement.EzOpenXml" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EzElement.EzOpenXml --version 1.0.1
#r "nuget: EzElement.EzOpenXml, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EzElement.EzOpenXml as a Cake Addin
#addin nuget:?package=EzElement.EzOpenXml&version=1.0.1

// Install EzElement.EzOpenXml as a Cake Tool
#tool nuget:?package=EzElement.EzOpenXml&version=1.0.1

EzOpenXml

The Fastest OpenXml Creator

N|Solid

EzOpenXml is a closed libery for creating and editing Xml Files

Features

  • Adding images
  • Adding Lables
  • configre print properties
  • configre cells properties
  • Export documents as Markdown, Excel and PDF

Code Exmples

string fileName = @"ExcelFileName.xlsx";

 using (EzSheet doc = new EzSheet(fileName))
            {
                doc.AddSheet("Sheet1");//you must atleast have one sheet

                FillConfig fill = new FillConfig()
                {
                    PatternValue = EzFillPatternValues.LightGrid,
                    ForeGroundColor = "00ff00",
                    BackGroundColor = ""
                };

                BorderConfig borderConfig = new BorderConfig()
                {
                    LeftBorder = EzBorder.Dotted,
                    RightBorder = EzBorder.Double,
                    BottomBorder = EzBorder.Thick,
                    TopBorder = EzBorder.Thick,
                    BorderColor = "000000"
                };

                FontConfig fontConfig = new FontConfig()
                {
                    FontName = "Arial",
                    FontSize = 11,
                    FontColor = "FF00EE",
                    Bold = true,
                    HorizontalTextAlignment = EzHorizontalAlignment.Center,
                    VerticalTextAlignment = EzVerticalAlignment.Center,
                    NumberFormatId = EzNumberingFormat.EURO_P2
                };

                doc.FormatRangedBorder("Sheet1", "B",2, "F", 6,borderConfig);

                doc.DefinePrintArea("Sheet1", "A", 5, "hh", 10);

                doc.FormatCell("Sheet1", "b", 5, fontConfig, fill, null);

                doc.MergeCells("Sheet1", "B", 5, "C", 100);

                doc.PlantValue("Sheet1", "b", 5, 550000.05);

                doc.AddSheet("Sheet2");

                doc.MergeCells("Sheet2", "b", 5, "c", 10);

                doc.PlantValue("Sheet2", "b5", "hey");

                doc.FormatCell("Sheet2", "b", 5, null, null, null);
                doc.FormatCell("Sheet2", "b", 5, fontConfig, fill, null);

                doc.AlterDefaultCellDimentions("Sheet2", 3, 3);
                doc.DefinePrintArea("Sheet2", "A", 5, "hh", 10);
                doc.AlterSheetFitToOnePage("Sheet2", true);
                doc.AlterSheetTabColor("Sheet2", "00ff00");

                doc.PlantValue("Sheet2", "c5", "bye");

            }

License

MIT

Free Software, Hell Yeah!

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  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 netcoreapp3.1 is compatible. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on EzElement.EzOpenXml:

Package Downloads
EzElement.EzDocument

Library to create/edit PDF and XSLX files using easy excel api

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 306 12/6/2022
1.0.2 1,000 3/24/2022
1.0.1 1,584 2/20/2022
1.0.0 789 2/20/2022