名称和索引
Contents
[
Hide
]
从行和列索引获取单元格名称
可以通过给定行和列索引来查找单元格的名称。 本文解释了如何操作。 Aspose.Cells提供了CellsHelper::CellIndexToName方法,使开发人员能够在提供行和列索引时获取单元格的名称。
与Microsoft Excel不同,Aspose.Cells从0开始计算行列索引,而不是从1开始。
以下示例代码说明了如何使用CellsHelper::CellIndexToName来访问已知行和列索引的单元格名称。 代码生成以下输出。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
U16String name = CellsHelper::CellIndexToName(3, 5); | |
std::cout << name.ToUtf8() << std::endl; |
从单元格名称获取行和列索引
可以从单元格名称中找到单元格的行和列索引。 本文解释了如何操作。 Aspose.Cells提供了CellsHelper.CellNameToIndex方法,使开发人员能够从单元格名称中获取行和列索引。
与Microsoft Excel不同,Aspose.Cells从0开始计算行列索引,而不是从1开始。
以下示例代码说明了如何使用CellsHelper::CellNameToIndex来从单元格名称中获取行和列索引。 代码生成以下输出。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int row; | |
int column; | |
CellsHelper::CellNameToIndex(u"C4", row, column); | |
std::cout << "row = " << row << std::endl; | |
std::cout << "column = " << column << std::endl; |