コード例 #1
0
            /// <summary>
            /// Loads the extra column of row data
            /// </summary>
            private void LoadExtra()
            {
                // Find rows containing the table data
                var table_rows = iat.Part.Worksheet.Descendants <Row>().Skip(title_row).Take(rows);

                Cell cell = null;

                // Find the extra data cell in each row
                foreach (Row row in table_rows)
                {
                    cell = row.Descendants <Cell>().ElementAt(title_col);
                    ExtraNames.Add(iat.ParseCell(cell));
                }
                return;
            }