【发布时间】:2014-06-19 08:15:43
【问题描述】:
private string GetCellName()
{
var cell = mySpreadsheet.ActiveWorksheetEditor.Selection.ActiveCell;
// I expect A1 if active cell is cell[0,0]
return cell. // What should i call here to get cell name;
}
在 WPF 应用程序中使用 Telerik RadSpreadSheet
我正在尝试从 Selection 对象或给定的单元格索引中获取单元格引用(如 Excel 应用程序 A1、B15、...中的单元格名称)
注意:
Telerik understand reference in formulasthere is a class called CellReference
【问题讨论】:
标签: c# wpf excel telerik spreadsheet