File tree 2 files changed +9
-12
lines changed
2 files changed +9
-12
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFrameworks >net8.0; net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks >
3
+ <TargetFrameworks >net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks >
4
4
<AssemblyVersion >7.0.1.0</AssemblyVersion >
5
5
<FileVersion >7.0.1.0</FileVersion >
6
6
<Version >7.0.1</Version >
Original file line number Diff line number Diff line change @@ -145,17 +145,14 @@ internal ExcelExternalWorkbook GetExternalWoorkbook(int externalReferenceIx)
145
145
}
146
146
147
147
internal HashSet < ulong > SubtotalAddresses { get ; private set ; }
148
- internal FormulaCellAddress CurrentCell { get ; set ; }
149
- internal FormulaCellAddress CurrentName { get ; set ; }
150
- internal string CurrentCellFullAddress
151
- {
152
- get
153
- {
154
- var ws = CurrentCell . WorksheetIx < 0 || CurrentCell . WorksheetIx >= Package . Workbook . Worksheets . Count ? "" : Package . Workbook . Worksheets [ CurrentCell . WorksheetIx ] . Name + "!" ;
155
- return ws + CurrentCell . Address ;
156
- }
157
- }
158
- internal ExcelWorksheet CurrentWorksheet
148
+ /// <summary>
149
+ /// Represents the current cell
150
+ /// </summary>
151
+ public FormulaCellAddress CurrentCell { get ; set ; }
152
+ /// <summary>
153
+ /// The worksheet where the current formula is located.
154
+ /// </summary>
155
+ public ExcelWorksheet CurrentWorksheet
159
156
{
160
157
get
161
158
{
You can’t perform that action at this time.
0 commit comments