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) { } /// /// Index to row, 0-based row number /// public UInt16 RowIndex; /// /// Index to column, 0-based column number /// public UInt16 ColIndex; /// /// Index to XF record /// public UInt16 XFIndex; } }