Skip to content

Commit 15eba2b

Browse files
author
Fahad Adeel
committed
Add New Row and Column Manipulation Features to FileFormat.Cells
- Implement InsertRow, InsertRows, HideRows, UnhideRows, HideColumns, and UnhideColumns methods. - Enhance the Worksheet class to support advanced row and column operations, improving the library's functionality. - Ensure robust error handling and input validation for new methods. - Update API documentation for added methods, providing clear usage instructions. These updates introduce significant enhancements to the FileFormat.Cells library, allowing for more versatile manipulation of rows and columns in Excel worksheets.
1 parent ac36eb6 commit 15eba2b

File tree

5 files changed

+1339
-402
lines changed

5 files changed

+1339
-402
lines changed

FileFormat.Cells/Comment.cs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace FileFormat.Cells
8+
{
9+
public class Comment
10+
{
11+
public string Author { get; set; }
12+
public string Text { get; set; }
13+
14+
public Comment(string author, string text)
15+
{
16+
Author = author;
17+
Text = text;
18+
}
19+
}
20+
}

FileFormat.Cells/FileFormat.Cells.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
<LangVersion>10.0</LangVersion>
67
<ImplicitUsings>enable</ImplicitUsings>
78
<Nullable>enable</Nullable>
89
</PropertyGroup>

0 commit comments

Comments
 (0)