本文整理匯總了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);
}
}