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 ParsedValue
|
---|
9 | {
|
---|
10 | public ParsedValue(object val, int rowIndex, int colIndex)
|
---|
11 | {
|
---|
12 | Value = val;
|
---|
13 | RowIndex = rowIndex;
|
---|
14 | ColIndex = colIndex;
|
---|
15 | }
|
---|
16 |
|
---|
17 | public object Value
|
---|
18 | {
|
---|
19 | get;
|
---|
20 | private set;
|
---|
21 | }
|
---|
22 |
|
---|
23 | public int RowIndex
|
---|
24 | {
|
---|
25 | get;
|
---|
26 | private set;
|
---|
27 | }
|
---|
28 |
|
---|
29 | public int ColIndex
|
---|
30 | {
|
---|
31 | get;
|
---|
32 | private set;
|
---|
33 | }
|
---|
34 | }
|
---|
35 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.