Sunday, 15 July 2012

c# - In telerik RadSpreadSheet how can I get cell name from cell index or selection? -



c# - In telerik RadSpreadSheet how can I get cell name from cell index or selection? -

private string getcellname() { var cell = myspreadsheet.activeworksheeteditor.selection.activecell; // expect a1 if active cell cell[0,0] homecoming cell. // should phone call here cell name; }

using telerik radspreadsheet in wpf application i'm trying cell reference (cell name in excel application a1, b15, ...) selection object or given cell index note: telerik understand reference in formulas there class called cellreference

class nameconverter provide helper methods create conversion between cell or column index , names

private string getcellname() { cellindex cellindex = this.radspreadsheet.activeworksheeteditor.selection.activecellindex; homecoming nameconverter.convertcellindextoname(cellindex); }

c# wpf excel telerik spreadsheet

No comments:

Post a Comment