Настройка высоты строки и ширины столбца в PHP
Contents
[
Hide
]
Aspose.Cells - Изменение высоты строки и ширины столбца
Установка высоты строки
Можно установить высоту одной строки, вызвав метод setRowHeight коллекции Cells. Метод setRowHeight принимает следующие параметры:
- Индекс строки, индекс строки, высоту которой вы изменяете.
- Высота строки, высота строки, применяемая к строке.
PHP-код
public static function set_row_height($dataDir)
{
# Instantiating a Workbook object by excel file path
$workbook = new Workbook($dataDir . 'Book1.xls');
# Accessing the first worksheet in the Excel file
$worksheet = $workbook->getWorksheets()->get(0);
$cells = $worksheet->getCells();
# Setting the height of the second row to 13
$cells->setRowHeight(1, 13);
# Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir . "Set Row Height.xls");
print "Set Row Height Successfully." . PHP_EOL;
}
Установка ширины столбца
Установите ширину столбца, вызвав метод setColumnWidth коллекции Cells. Метод setColumnWidth принимает следующие параметры:
- Индекс колонки, индекс колонки, ширину которой вы изменяете.
- Ширина колонки, желаемая ширина колонки.
PHP-код
public static function set_column_width($dataDir)
{
# Instantiating a Workbook object by excel file path
$workbook = new Workbook($dataDir . 'Book1.xls');
# Accessing the first worksheet in the Excel file
$worksheet = $workbook->getWorksheets()->get(0);
$cells = $worksheet->getCells();
# Setting the width of the second column to 17.5
$cells->setColumnWidth(1, 17.5);
# Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir . "Set Column Width.xls");
print "Set Column Width Successfully." . PHP_EOL;
}
Скачать работающий код
Скачать Настройка высоты строки и ширины столбца (Aspose.Cells) с любого из перечисленных ниже сайтов социальной разработки: