本文介绍了PHPExcel保护图表的拖放,并切割的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用PHPExcel生成图表,我做了,也有我的保护(只读)的文件。
但是现在我想避免拖动图表,并且剪切选项应该禁用或用户不能够切割图表。

I used PHPExcel to generate chart and i done it, also i have protected (read only) the file.But now i want to avoid from dragging of chart and also the cut option should be disabled or user should not be able to cut the chart. For any help thanks.

推荐答案

此代码保护工作簿中的所有对象,包括图表:

This code protects all objects in workbook - including charts:

$workbook->getActiveSheet()->getProtection()->setObjects(true);

在PHPExcel 1.8.0上测试。

Tested on PHPExcel 1.8.0.

这篇关于PHPExcel保护图表的拖放,并切割的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 13:43