當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。