Example #1
0
 public 表格块 this[string Address]
 {
     get {
         ExcelRange range = WorkRange[Address];
         表格块        单元格   = new 表格块(range);
         return(单元格);
     }
 }
Example #2
0
 public 表格块 this[int FromRow, int FromCol, int ToRow, int ToCol]
 {
     get
     {
         ExcelRange range = WorkRange[FromRow, FromCol, ToRow, ToCol];
         表格块        单元格   = new 表格块(range);
         return(单元格);
     }
 }
Example #3
0
 public 表格块 this[int Row, int Col]
 {
     get
     {
         ExcelRange range = WorkRange[Row, Col];
         表格块        单元格   = new 表格块(range);
         return(单元格);
     }
 }