Masquer ou afficher une feuille de calcul en Php

Aspose.Cells - Masquer ou afficher une feuille de calcul

Masquer une feuille de calcul

Pour masquer la feuille de calcul en utilisant Aspose.Cells Java pour PHP, appelez le module hideunhideworksheet.

Code PHP

 //Instantiating a Workbook object by excel file path

$workbook = new Workbook($dataDir . "book1.xls");

//Accessing the first worksheet in the Excel file

$worksheets = $workbook->getWorksheets();

$worksheet = $worksheets->get(0);

//Hiding the first worksheet of the Excel file

$worksheet->setVisible(false);

//Saving the modified Excel file in default (that is Excel 2003) format

$workbook->save($dataDir . "output.xls");

Télécharger le code en cours d’exécution

Téléchargez Masquer ou afficher une feuille de calcul (Aspose.Cells) sur l’un des sites de codage social mentionnés ci-dessous :