1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| using System;
| using System.Collections.Generic;
| using System.Text;
| using System.IO;
|
| namespace HH.WMS.Utils.ExcelLibrary.BinaryFileFormat
| {
| public partial class CellValue : Record
| {
| public CellValue() { }
|
| public CellValue(Record record) : base(record) { }
|
| /// <summary>
| /// Index to row, 0-based row number
| /// </summary>
| public UInt16 RowIndex;
|
| /// <summary>
| /// Index to column, 0-based column number
| /// </summary>
| public UInt16 ColIndex;
|
| /// <summary>
| /// Index to XF record
| /// </summary>
| public UInt16 XFIndex;
|
| }
| }
|
|