Class HeaderNameRenderingConverterBase
Base class for converters that transform row and column indices into display names for spreadsheet headers, enabling custom numbering schemes.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Utilities
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public abstract class HeaderNameRenderingConverterBase
Constructors
HeaderNameRenderingConverterBase()
Initializes a new instance of the HeaderNameRenderingConverterBase class. This is a base class for header name rendering converters.
Declaration
protected HeaderNameRenderingConverterBase()
Methods
ConvertColumnIndexToNameOverride(HeaderNameRenderingConverterContext, Int32)
Converts the name of the column index to.
Declaration
protected virtual string ConvertColumnIndexToNameOverride(HeaderNameRenderingConverterContext context, int columnIndex)
Parameters
|
HeaderNameRenderingConverterContext
context
The context. |
|
System.Int32
columnIndex
Index of the column. |
Returns
|
System.String
The column name. |
ConvertRowIndexToNameOverride(HeaderNameRenderingConverterContext, Int32)
Converts the name of the row index to.
Declaration
protected virtual string ConvertRowIndexToNameOverride(HeaderNameRenderingConverterContext context, int rowIndex)
Parameters
|
HeaderNameRenderingConverterContext
context
The context. |
|
System.Int32
rowIndex
Index of the row. |
Returns
|
System.String
The row name. |