本文整理汇总了C#中System.Line.SetValue方法的典型用法代码示例。如果您正苦于以下问题:C# Line.SetValue方法的具体用法?C# Line.SetValue怎么用?C# Line.SetValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Line
的用法示例。
在下文中一共展示了Line.SetValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OutputRmlTable
//.........这里部分代码省略.........
sums[j] = AddValue(column.DataType,
sums[j],
v);
// sums[j] = ((decimal)sums[j]) + v;
}
}
}
catch (Exception ex) // 俘获可能因字符串转换为整数抛出的异常
{
throw new Exception("在累加 行 " + i.ToString() + " 列 " + column.ColumnNumber.ToString() + " 值的时候,抛出异常: " + ex.Message);
}
}
}
// strResult.Append("</tr>\r\n");
writer.WriteEndElement(); // </tr>
}
writer.WriteEndElement(); // </tbody>
if (this.SumLine == true)
{
Line sum_line = null;
if (engine != null)
{
// 准备 Line 对象
sum_line = new Line(0);
for (j = 1; j < this.Count; j++)
{
PrintColumn column = (PrintColumn)this[j];
if (column.Sum == true
&& sums[j] != null)
{
sum_line.SetValue(j-1, sums[j]);
}
}
engine.SetGlobalValue("line", sum_line);
}
// strResult.Append("<tr class='sum'>\r\n");
writer.WriteStartElement("tfoot");
writer.WriteStartElement("tr");
writer.WriteAttributeString("class", "sum");
for (j = 0; j < this.Count; j++)
{
PrintColumn column = (PrintColumn)this[j];
string strText = "";
if (j == 0)
strText = "合计";
else if (string.IsNullOrEmpty(column.Eval) == false)
{
strText = engine.Evaluate(column.Eval).ToString();
}
else if (column.Sum == true
&& sums[j] != null)
{
if (column.DataType == DataType.PriceDouble)
strText = ((double)sums[j]).ToString("N", nfi);
else if (column.DataType == DataType.PriceDecimal)
strText = ((decimal)sums[j]).ToString("N", nfi);
else if (column.DataType == DataType.Price)
{
strText = StatisUtil.Int64ToPrice((Int64)sums[j]);
}