The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I have a string variable with a cell reference like "C10". Is there a simple function to extract the row/column number from the cell reference?
I am looking for the reverse of the GridRangeInfo GetAlphaLabel and GetNumericLabel functions.
ADAdministrator Syncfusion Team February 10, 2005 11:51 PM UTC
Use
GridRangeInfo range = GridRangeInfo.Parse("C10");
int col = range.Top;
Stefan
>I have a string variable with a cell reference like "C10". Is there a simple function to extract the row/column number from the cell reference?
>
>I am looking for the reverse of the GridRangeInfo GetAlphaLabel and GetNumericLabel functions.