Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace OfficeOpenXml.FormulaParsing
|
---|
7 | {
|
---|
8 | public class ExcelCell
|
---|
9 | {
|
---|
10 | public ExcelCell(object val, string formula, int colIndex, int rowIndex)
|
---|
11 | {
|
---|
12 | Value = val;
|
---|
13 | Formula = formula;
|
---|
14 | ColIndex = colIndex;
|
---|
15 | RowIndex = rowIndex;
|
---|
16 | }
|
---|
17 |
|
---|
18 | public int ColIndex { get; private set; }
|
---|
19 |
|
---|
20 | public int RowIndex { get; private set; }
|
---|
21 |
|
---|
22 | public object Value { get; private set; }
|
---|
23 |
|
---|
24 | public string Formula { get; private set; }
|
---|
25 | }
|
---|
26 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.