DevExpress XtraReports绝对值

时间:2014-02-04 12:57:42

标签: c# devexpress

我从总和得到负值,我需要它的绝对值。仅供参考,价值在标签中。

2 个答案:

答案 0 :(得分:2)

用于总和的标签包含事件SummaryCalculated

private void xrLabel1_SummaryCalculated(object sender, TextFormatEventArgs e) {
  xrLabel1.Text = Math.Abs(Convert.ToInt32(e.Value)).ToString();
}

答案 1 :(得分:0)

您只需使用Math.Abs Method

即可
  

返回指定数字的绝对值。

例如;

string s = YourLabelControl.Text;
int i;
if(Int32.TryParse(s, out i))
{
  int abs = Math.Abs(i);
}
else
{
  //Your Label value is not a valid int.
}