Class
HeaderNameRenderingConverterBase

Base class for converters that transform row and column indices into display names for spreadsheet headers, enabling custom numbering schemes.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.Utilities

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

cs-api-definition
public abstract class HeaderNameRenderingConverterBase

Inheritance: objectHeaderNameRenderingConverterBase

Constructors

HeaderNameRenderingConverterBase()

Initializes a new instance of the HeaderNameRenderingConverterBase class. This is a base class for header name rendering converters.

Declaration

cs-api-definition
protected HeaderNameRenderingConverterBase()

Methods

ConvertColumnIndexToNameOverride(HeaderNameRenderingConverterContext, int)

Converts the name of the column index to.

Declaration

cs-api-definition
protected virtual string ConvertColumnIndexToNameOverride(HeaderNameRenderingConverterContext context, int columnIndex)

Parameters

context

HeaderNameRenderingConverterContext

The context.

columnIndex

int

Index of the column.

Returns

string

The column name.

ConvertRowIndexToNameOverride(HeaderNameRenderingConverterContext, int)

Converts the name of the row index to.

Declaration

cs-api-definition
protected virtual string ConvertRowIndexToNameOverride(HeaderNameRenderingConverterContext context, int rowIndex)

Parameters

context

HeaderNameRenderingConverterContext

The context.

rowIndex

int

Index of the row.

Returns

string

The row name.