Get Text Width of Cell Value with C++
Contents
[
Hide
]
Get Text Width of Cell Value
Sometimes, the developers might need to calculate the width of the cell’s value for arranging data in some layout. Aspose.Cells provides the CellsHelper::GetTextWidth method which allows developers to get the text width of the cell’s value. The following sample code illustrates how to use CellsHelper::GetTextWidth to access the text width of the cell’s value.
The Source file used in the following code snippet is attached for your reference.
Sample Code
#include <iostream>
#include "Aspose.Cells.h"
using namespace Aspose::Cells;
int main()
{
Aspose::Cells::Startup();
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-C
// Directory path for source files
U16String sourceDir(u"..\\Data\\01_SourceDirectory\\");
// Create workbook from the specified Excel file
Workbook workbook(sourceDir + u"GetTextWidthSample.xlsx");
// Calculate the text width for the string value of cell A1
double textWidth = CellsHelper::GetTextWidth(workbook.GetWorksheets().Get(0).GetCells().Get(u"A1").GetStringValue(), workbook.GetDefaultStyle().GetFont(), 1);
// Output the text width
std::wcout << u"Text width: " << textWidth << std::endl;
Aspose::Cells::Cleanup();
}