iceman 发表于 2014-1-16 16:50:00

Spread Silverlight 能否根据内容获取单元格行列索引

代用户发帖:
Spread Silverlight 能否根据内容获取单元格行列索引:
1.通过 ColumnHeader 的 Label 获取列索引。
2.通过 单元格 的内容获取行列索引。

是否有内置方法来实现以上功能。
谢谢

roger.wang 发表于 2014-1-16 17:00:00

回复 1楼iceman的帖子

无内置的方法。

可通过如下办法:遍历row、column,对比内容实现

public bool FindRowColumnIndexByContext(string content, ref int rowIndex, ref int ColumnIndex)
      {
            for (int i = 0; i < gcSpreadSheet1.ActiveSheet.RowCount; i++)
            {
                for (int j = 0; j < gcSpreadSheet1.ActiveSheet.ColumnCount; j++)
                {
                  if (string.Compare(gcSpreadSheet1.ActiveSheet.Cells.Text, content) == 0)
                  {
                        rowIndex = i;
                        ColumnIndex = j;
                        return true;
                  }
                }
            }

            return false;
      }
页: [1]
查看完整版本: Spread Silverlight 能否根据内容获取单元格行列索引