本文整理汇总了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++;
}
}
示例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);
}
}