当前位置: 首页>>代码示例>>C#>>正文


C# ExcelAccess.ReadCellValue方法代码示例

本文整理汇总了C#中ExcelAccess.ReadCellValue方法的典型用法代码示例。如果您正苦于以下问题:C# ExcelAccess.ReadCellValue方法的具体用法?C# ExcelAccess.ReadCellValue怎么用?C# ExcelAccess.ReadCellValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ExcelAccess的用法示例。


在下文中一共展示了ExcelAccess.ReadCellValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ExportExcel


//.........这里部分代码省略.........
                    for (int jy = 0; jy < 21; jy++) {

                        if ((jymaxpage + p - pagecount) * 21 + jy >= fyjyjllist.Count) {
                            break;
                        }
                        string tempstr = fyjyjllist[(jymaxpage + p - pagecount) * 21 + jy];
                        ex.SetCellValue(tempstr, 30 + jy, 1);

                        if (p == pagecount - jymaxpage && jy == 0) {
                            //设定活动内容为粗体
                            ex.SetFontBold(30, 1, 30, 1, true, 0, 6);
                        }
                    }
                }

            }

            ex.ActiveSheet(1);

            //主持人
            ex.SetCellValue(obj.zcr, 4, 2);

            //开始时间
            row = 2;
            ex.SetCellValue(obj.kssj.Year.ToString(), row + 2, col + 4);

            ex.SetCellValue(obj.kssj.Month.ToString(), row + 2, col + 6);

            ex.SetCellValue(obj.kssj.Day.ToString(), row + 2, col + 8);

            ex.SetCellValue(obj.kssj.Hour.ToString(), row + 2, col + 10);

            ex.SetCellValue(obj.kssj.Minute.ToString(), row + 2, col + 12);

            //结束时间
            ex.SetCellValue(obj.jssj.Year.ToString(), row + 3, col + 4);

            ex.SetCellValue(obj.jssj.Month.ToString(), row + 3, col + 6);

            ex.SetCellValue(obj.jssj.Day.ToString(), row + 3, col + 8);

            ex.SetCellValue(obj.jssj.Hour.ToString(), row + 3, col + 10);

            ex.SetCellValue(obj.jssj.Minute.ToString(), row + 3, col + 12);

            //出席人员
            string[] ary = obj.cjry.Split(jksign);
            int m = ary.Length / 8;
            int n = ary.Length % 8;
            if (n > 0) {
                m++;
            }
            if (m == 0) {
                m++;
            }

            for (int i = 0; i < ary.Length; i++) {
                int tempcol = col + 1 + i % 8;
                if (i % 8 > 3) {
                    tempcol = col + 4 + (i % 8 - 3) * 2;
                }
                ex.SetCellValue(ary[i], row + 4 + i / 8, tempcol);
            }
            //缺席人员
            string[] ary2 = obj.qxry.Split(jksign);

            for (int j = 0; j < ary2.Length; j++) {
                int tempcol = col + 2 + j % 7;
                if (j > 2 && j < 7) {
                    tempcol = col + 4 + (j % 7 - 2) * 2;
                }
                if (j < 7) {
                    ex.SetCellValue(ary2[j], row + 7, tempcol);
                } else//缺席人员大于七个时
                {
                    string tempstr = ex.ReadCellValue(row + 7, col + 12);
                    tempstr = tempstr + "/" + ary2[j];
                    ex.SetCellValue(tempstr, row + 7, col + 12);
                }

            }


            //签字
            // ex.SetCellValue("签字: ", 25, 1);
            // ex.SetCellValue(obj.qz, 25, col + 1);


            //签字时间小于系统默认时间则不输出
            //  if (ComboBoxHelper.CompreDate(obj.qzrq))
            //  {
            //     ex.SetCellValue(obj.qzrq.Year.ToString(), 25, 5);
            //     ex.SetCellValue(obj.qzrq.Month.ToString(), 25, 7);
            //     ex.SetCellValue(obj.qzrq.Day.ToString(), 25, 11);

            //    }

            ex.ShowExcel();

        }
开发者ID:s7loves,项目名称:mypowerscgl,代码行数:101,代码来源:Export02.cs


注:本文中的ExcelAccess.ReadCellValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。