dev 设置表格一列数据显示格式

Posted houzf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dev 设置表格一列数据显示格式相关的知识,希望对你有一定的参考价值。

void gridView_CustomColumnDisplayText(object sender, DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventArgs e)
{
if (e.Column.FieldName == "GEO_LAT")
{
if (e.DisplayText.Length == 9)
{
string newste1 = e.DisplayText.Substring(0, 7);
string newste2 = e.DisplayText.Substring(7, 2);
e.DisplayText = newste1 + "." + newste2;
}
}
if (e.Column.FieldName == "GEO_LONG")
{
if (e.DisplayText.Length == 10)
{
string newste1 = e.DisplayText.Substring(0, 8);
string newste2 = e.DisplayText.Substring(8, 2);
e.DisplayText = newste1 + "." + newste2;
}
}
}

以上是关于dev 设置表格一列数据显示格式的主要内容,如果未能解决你的问题,请参考以下文章

怎样在excel表格中的一列设置成文本格式

excel表格输入的数字太长出现E+的形式,怎么解决

QTableWidget的列文本格式如何设置?

WPS表格中的一列数据中有重复怎样标红

excel a列输入数值时 b列显示红色

excel中,把某一列的数字放到一个单元格中,并且用逗号隔开,请说一下具体步骤