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


C# Table.InsertRow方法代码示例

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


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

示例1: PopulateTable

        private void PopulateTable(Table table, IEnumerable<ProtocolResult> data)
        {
            var textStyle = new Formatting();
            textStyle.Size = 9;
            textStyle.FontFamily = new System.Drawing.FontFamily("Times New Roman");

            int productIndex = 1;
            string lastProductName = "";

            foreach (var item in data)
            {
                var row = table.InsertRow();

                if (lastProductName != item.ProductTest.Product.Name)
                {
                    row.Cells[0].Paragraphs[0].InsertText(productIndex + ".", false, textStyle);
                    productIndex++;
                    lastProductName = item.ProductTest.Product.Name;
                }

                row.Cells[1].Paragraphs[0].InsertText(item.ResultNumber, false, textStyle);
                row.Cells[2].Paragraphs[0].InsertText(item.ProductTest.Product.Name, false, textStyle);
                row.Cells[3].Paragraphs[0].InsertText(item.ProductTest.Test.Name, false, textStyle);
                row.Cells[4].Paragraphs[0].InsertText(item.ProductTest.Test.UnitName, false, textStyle);
                row.Cells[5].Paragraphs[0].InsertText(item.ProductTest.TestMethod.Method, false, textStyle);
                row.Cells[6].Paragraphs[0].InsertText(item.Results, false, textStyle);
                row.Cells[7].Paragraphs[0].InsertText(item.ProductTest.MethodValue, false, textStyle);
                row.Cells[8].Paragraphs[0].InsertText(item.ProductTest.Test.Temperature, false, textStyle);
                //rowIndex++;
            }
        }
开发者ID:astian92,项目名称:rvselectronicdiary,代码行数:31,代码来源:ProtocolReport.cs

示例2: InsertTableNumerationRow

        private void InsertTableNumerationRow(Table table)
        {
            var textStyle = new Formatting();
            textStyle.Size = 9;
            textStyle.Bold = true;
            textStyle.FontFamily = new System.Drawing.FontFamily("Times New Roman");

            var row = table.InsertRow();

            for (int i = 0; i < table.ColumnCount; i++)
            {
                row.Cells[i].Paragraphs[0].InsertText((i + 1).ToString(), false, textStyle);
            }
        }
开发者ID:astian92,项目名称:rvselectronicdiary,代码行数:14,代码来源:ProtocolReport.cs


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