Exemple #1
2
 public Cell(Worksheet sheet, string cellReference)
 {
     Sheet = sheet;
     Xml = new Spreadsheet.Cell(
         new Spreadsheet.Value { })
     {
         CellReference = new StringValue(cellReference)
     };
 }
        public void SetUp()
        {
            var book = Workbook.Open(@"TestData\Book1.xlsx");

            いろいろなデータ = book.Sheets["いろいろなデータ"];

            a1 = いろいろなデータ.Cells["A1"];
            b1 = いろいろなデータ.Cells["B1"];
            a2 = いろいろなデータ.Cells["A2"];
            b2 = いろいろなデータ.Cells["B2"];
            a3 = いろいろなデータ.Cells["A3"];
            b3 = いろいろなデータ.Cells["B3"];
        }
 public void SetUp()
 {
     book = Workbook.Open(@"TestData\Book1.xlsx");
     sheet1 = book.Sheets["Sheet1"];
     data = book.Sheets["いろいろなデータ"];
 }
 public CellCollection(Worksheet sheet)
 {
     this.sheet = sheet;
 }
Exemple #5
0
 public Cell(Worksheet sheet, Spreadsheet.Cell xml)
 {
     Sheet = sheet;
     Xml = xml;
 }