在PHP中显示或隐藏标签
Contents
[
Hide
]
Aspose.Cells - 显示或隐藏标签页
隐藏选项卡
要使用Aspose.Cells Java for PHP隐藏标签,调用displayhidetabs模块。
PHP 代码
//Instantiating a Workbook object by excel file path
$workbook = new Workbook($dataDir . "book1.xls");
//Hiding the tabs of the Excel file
$workbook->getSettings()->setShowTabs(false);
//Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir + "output.xls");
下载运行代码
从以下提到的任何社交编码站点下载隐藏或显示标签页 (Aspose.Cells)。