Exemplo n.º 1
0
        public Excel工作表 Create(string Name)
        {
            ExcelWorksheet sheet = Worksheets.Add(Name);
            Excel工作表       工作表   = new Excel工作表(sheet);

            return(工作表);
        }
Exemplo n.º 2
0
 public Excel工作表 this[string Name]
 {
     get
     {
         ExcelWorksheet sheet = Worksheets[Name];
         Excel工作表       工作表   = new Excel工作表(sheet);
         return(工作表);
     }
 }
Exemplo n.º 3
0
 public Excel工作表 this[int PositionID]
 {
     get
     {
         ExcelWorksheet sheet = Worksheets[PositionID - 1];
         Excel工作表       工作表   = new Excel工作表(sheet);
         return(工作表);
     }
 }