Скрытие и отображение строк и столбцов в PHP
Contents
[
Hide
]
Aspose.Cells для PHP - Управление видимостью строк и столбцов
Как скрыть строки и столбцы в PHP
Разработчики могут скрыть строку или столбец, вызвав методы HideRow и HideColumn соответственно коллекции Cells. Оба метода принимают индекс строки/столбца в качестве параметра, чтобы скрыть конкретную строку или столбец.
PHP-код
public static function hide_rows_columns($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();;
# Hiding the 3rd row of the worksheet
$cells->hideRow(2);
# Hiding the 2nd column of the worksheet
$cells->hideColumn(1);
# Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir . "Hide Rows And Columns.xls");
print "Hide Rows And Columns Successfully." . PHP_EOL;
}
Как показывать строки и столбцы с помощью PHP
Разработчики могут отобразить скрытую строку или столбец, вызвав методы UnhideRow и UnhideColumn соответственно коллекции Cells. Оба метода принимают два параметра:
- Индекс строки или столбца - индекс строки или столбца, который используется для отображения конкретной строки или столбца.
- Высота строки или ширина столбца - высота строки или ширина столбца, назначенные строке или столбцу после ее отображения.
PHP-код
public static function unhide_rows_columns($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();;
# Unhiding the 3rd row and setting its height to 13.5
$cells->unhideRow(2,13.5);
# Unhiding the 2nd column and setting its width to 8.5
$cells->unhideColumn(1,8.5);
# Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir . "Unhide Rows And Columns.xls");
print "Unhide Rows And Columns Successfully." . PHP_EOL;
}
Скачать работающий код
Загрузить Управление видимостью строк и столбцов (Aspose.Cells) с любого из нижеупомянутых сайтов социального программирования: