Skip to content

Commit 8c9f270

Browse files
authored
Merge pull request #17 from fahadadeel/main
Updated namespaces
2 parents a759717 + 4a2d3cc commit 8c9f270

20 files changed

+31
-31
lines changed

.DS_Store

0 Bytes
Binary file not shown.

Openize.Cells.sln renamed to FileFormat.Cells.sln

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.9.34607.119
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Openize.Cells", "Openize.Cells\Openize.Cells.csproj", "{347E8540-1317-4E99-BF8A-A16A04E753BB}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileFormat.Cells", "FileFormat.Cells\FileFormat.Cells.csproj", "{347E8540-1317-4E99-BF8A-A16A04E753BB}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Openize.Cells_Tests", "Openize.Cells_Tests\Openize.Cells_Tests.csproj", "{A9BFD275-A6CD-4CD7-B039-8CB29CDE5C93}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileFormat.Cells_Tests", "FileFormat.Cells_Tests\FileFormat.Cells_Tests.csproj", "{A9BFD275-A6CD-4CD7-B039-8CB29CDE5C93}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution

Openize.Cells/BuiltInDocumentProperties.cs renamed to FileFormat.Cells/BuiltInDocumentProperties.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System;
2-
namespace Openize.Cells
2+
namespace FileFormat.Cells
33
{
44
public class BuiltInDocumentProperties
55
{

Openize.Cells/Cell.cs renamed to FileFormat.Cells/Cell.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using DocumentFormat.OpenXml.Spreadsheet;
55
using DocumentFormat.OpenXml.Packaging;
66

7-
namespace Openize.Cells
7+
namespace FileFormat.Cells
88
{
99
public sealed class Cell
1010
{

Openize.Cells/Comment.cs renamed to FileFormat.Cells/Comment.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace Openize.Cells
7+
namespace FileFormat.Cells
88
{
99
public class Comment
1010
{

Openize.Cells/Image.cs renamed to FileFormat.Cells/Image.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using System.IO;
1010
using System;
1111

12-
namespace Openize.Cells
12+
namespace FileFormat.Cells
1313
{
1414

1515
/// <summary>

Openize.Cells/ImageHandler.cs renamed to FileFormat.Cells/ImageHandler.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using System;
1111
using System.IO;
1212

13-
namespace Openize.Cells
13+
namespace FileFormat.Cells
1414
{
1515
public class ImageHandler
1616
{

Openize.Cells/Program.cs renamed to FileFormat.Cells/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
using Openize.Cells;
3+
using FileFormat.Cells;
44
using System;
55

66
class Program

Openize.Cells/Range.cs renamed to FileFormat.Cells/Range.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace Openize.Cells
7+
namespace FileFormat.Cells
88
{
99
public class Range
1010
{
File renamed without changes.

Openize.Cells/ValidationRule.cs renamed to FileFormat.Cells/ValidationRule.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading.Tasks;
66
using System.Xml;
77

8-
namespace Openize.Cells
8+
namespace FileFormat.Cells
99
{
1010
/// <summary>
1111
/// Specifies the types of validation that can be applied to a cell or range of cells.

Openize.Cells/Workbook.cs renamed to FileFormat.Cells/Workbook.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.IO.Packaging;
99
using System.Linq;
1010

11-
namespace Openize.Cells
11+
namespace FileFormat.Cells
1212
{
1313

1414
public enum SheetVisibility

Openize.Cells/Worksheet.cs renamed to FileFormat.Cells/Worksheet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using DocumentFormat.OpenXml.Vml;
1010

1111

12-
namespace Openize.Cells
12+
namespace FileFormat.Cells
1313
{
1414
/// <summary>
1515
/// Represents a worksheet within an Excel file, providing methods to manipulate its content.

Openize.Cells_Tests/Openize.Cells_Tests.csproj renamed to FileFormat.Cells_Tests/FileFormat.Cells_Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<ProjectReference Include="..\Openize.Cells\Openize.Cells.csproj" />
23+
<ProjectReference Include="..\FileFormat.Cells\FileFormat.Cells.csproj" />
2424
</ItemGroup>
2525
</Project>

Openize.Cells_Tests/UnitTest1.cs renamed to FileFormat.Cells_Tests/UnitTest1.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
using Openize.Cells;
3-
namespace Openize.Cells_Tests
2+
using FileFormat.Cells;
3+
namespace FileFormat.Cells_Tests
44
{
55
[TestClass]
66
public class UnitTest1
File renamed without changes.

LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Openize Pty Ltd
3+
Copyright (c) 2023 Aspose Pty Ltd
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Open-Source .NET API For Excel Automation
22

3-
<p> <a href="https://openize-cells.github.io/Openize.Cells-for-.NET/">Openize.Cells</a> is an <b>open-source .NET library</b> developed to automate Spreadsheet creation and management. This is an extensible C# library for Workbook management and modification. Regardless of the user's expertise, this <b>Spreadsheet API</b> is easy to install and use. In addition, the robustness of this API is due to <a href="https://learn.microsoft.com/en-us/office/open-xml/word-processing">OpenXML</a> which is the core engine of Openize.Cells. However, you may install this C# library to achieve Excel file generation and manipulation programmatically. Once this library is set up, you need no third-party library to automate Spreadsheet creation or modification.
3+
<p> <a href="https://fileformat-cells.github.io/FileFormat.Cells-for-.NET/">FileFormat.Cells</a> is an <b>open-source .NET library</b> developed to automate Spreadsheet creation and management. This is an extensible C# library for Workbook management and modification. Regardless of the user's expertise, this <b>Spreadsheet API</b> is easy to install and use. In addition, the robustness of this API is due to <a href="https://learn.microsoft.com/en-us/office/open-xml/word-processing">OpenXML</a> which is the core engine of FileFormat.Cells. However, you may install this C# library to achieve Excel file generation and manipulation programmatically. Once this library is set up, you need no third-party library to automate Spreadsheet creation or modification.
44
</p>
55
<p align="center" dir="auto">
6-
<a title="Download ZIP" href="https://github.com/openize-cells/Openize.Cells-for-.NET/archive/master.zip">
6+
<a title="Download ZIP" href="https://github.com/fileformat-cells/FileFormat.Cells-for-.NET/archive/master.zip">
77
<img src="https://camo.githubusercontent.com/594ea6cc6161dd6c3f7bc55c9022c27b94fe39c74bc90a9a8d144c77b9af1573/687474703a2f2f692e696d6775722e636f6d2f68774e6872475a2e706e67" data-canonical-src="http://i.imgur.com/hwNhrGZ.png" style="max-width: 100%;">
88
</a>
99
</p>
@@ -16,40 +16,40 @@
1616
<th>Description</th>
1717
</tr>
1818
<tr>
19-
<td><a href = "https://github.com/openize-cells/Openize.Cells-for-.NET/tree/main/Openize.Cells_Tests">Openize.Cells_Tests</a></td>
20-
<td>This directory contains the unit tests of all the features Openize.Cells offers.</td>
19+
<td><a href = "https://github.com/fileformat-cells/FileFormat.Cells-for-.NET/tree/main/FileFormat.Cells_Tests">FileFormat.Cells_Tests</a></td>
20+
<td>This directory contains the unit tests of all the features FileFormat.Cells offers.</td>
2121
</tr>
2222
<tr>
23-
<td><a href = "https://github.com/openize-cells/Openize.Cells-for-.NET/tree/main/Openize.Cells">Openize.Cells</a></td>
23+
<td><a href = "https://github.com/fileformat-cells/FileFormat.Cells-for-.NET/tree/main/FileFormat.Cells">FileFormat.Cells</a></td>
2424
<td>It contains all the source code files necessary to execute the features.</td>
2525
</tr>
2626
<tr>
27-
<td><a href = "https://github.com/openize-cells/Openize.Cells-for-.NET/tree/main/TestSpreadSheets">TestSpreadSheets</a></td>
27+
<td><a href = "https://github.com/fileformat-cells/FileFormat.Cells-for-.NET/tree/main/TestSpreadSheets">TestSpreadSheets</a></td>
2828
<td>This folder includes test files generated by this Open-Souorce .NET API.</td>
2929
</tr>
3030
</table>
3131

3232
## Library Features & Provisions
3333

34-
<p> <a href="https://openize-cells.github.io/Openize.Cells-for-.NET/">Openize.Cells</a> provides seamless Spreadsheet creation and manipulation. Moreover, this Spreadsheet API lets users design Excel files programmatically as per data representation needs. </p>
34+
<p> <a href="https://fileformat-cells.github.io/FileFormat.Cells-for-.NET/">FileFormat.Cells</a> provides seamless Spreadsheet creation and manipulation. Moreover, this Spreadsheet API lets users design Excel files programmatically as per data representation needs. </p>
3535

3636
This Open-Source .NET API comes up with the following functionalities:
3737

38-
- <a href="https://openize-cells.github.io/Openize.Cells-for-.NET/">Openize.Cells</a> API provides empty Excel file creation as well as with the content. Moreover, .NET developers can
38+
- <a href="https://fileformat-cells.github.io/FileFormat.Cells-for-.NET/">FileFormat.Cells</a> API provides empty Excel file creation as well as with the content. Moreover, .NET developers can
3939
open existing Excel files from a file & stream both.
4040
- This .NET Spreadsheet API offers methods and properties to create/delete Worksheets. Further, users can insert/delete data into cells and read rows/columns programmatically.
4141
- There are methods and properties to update the Font family and Font size of the data in Cells.
42-
- Users can leverage the <a href="https://openize-cells.github.io/Openize.Cells-for-.NET/api/Openize.Cells.Image.Image.html">Image</a> namespace to add images to Worksheets. In addition, there are properties and functions to extract images from Worksheets.
42+
- Users can leverage the <a href="https://fileformat-cells.github.io/FileFormat.Cells-for-.NET/api/FileFormat.Cells.Image.Image.html">Image</a> namespace to add images to Worksheets. In addition, there are properties and functions to extract images from Worksheets.
4343

4444

4545
## Getting Started With FileFormat.Words For .NET
4646

47-
<p>Since Openize.Cells is available as a <a href="#">NuGet Package</a>, you can download the Nuget Package of this library. Well, the installation procedure of this C# Spreadsheet API is a matter of running a single command as mentioned below: </p>
48-
<code>Install-Package Openize.Cells</code>
47+
<p>Since FileFormat.Cells is available as a <a href="#">NuGet Package</a>, you can download the Nuget Package of this library. Well, the installation procedure of this C# Spreadsheet API is a matter of running a single command as mentioned below: </p>
48+
<code>Install-Package FileFormat.Cells</code>
4949

5050
## Creating an Excel Spreadsheet Programmatically
5151

52-
The following code segment creates an empty <a href="https://docs.openize.com/spreadsheet/xlsx/">Excel<a/> file with a default Worksheet.
52+
The following code segment creates an empty <a href="https://docs.fileformat.com/spreadsheet/xlsx/">Excel<a/> file with a default Worksheet.
5353
<pre>
5454
<code>
5555
// Create an object of the Workbook class.
@@ -61,4 +61,4 @@ workbook.Save("/spreadsheet.xlsx");
6161
</pre>
6262

6363
## Coming updates
64-
<p> <a href="https://openize-cells.github.io/Openize.Cells-for-.NET/">Openize.Cells</a> is planning to add more functionalities to its features bucket. However, after the successful launch of <a href="https://openize-cells.github.io/Openize.Cells-for-.NET/">Openize.Cells</a> and <a href="https://openize-words.github.io/FileFormat.Words-for-.NET/">FileFormat.Words</a> the development of FileFormat.Slides is a work in progress. So, stay in touch for regular updates. </p>
64+
<p> <a href="https://fileformat-cells.github.io/FileFormat.Cells-for-.NET/">FileFormat.Cells</a> is planning to add more functionalities to its features bucket. However, after the successful launch of <a href="https://fileformat-cells.github.io/FileFormat.Cells-for-.NET/">FileFormat.Cells</a> and <a href="https://fileformat-words.github.io/FileFormat.Words-for-.NET/">FileFormat.Words</a> the development of FileFormat.Slides is a work in progress. So, stay in touch for regular updates. </p>

0 commit comments

Comments
 (0)