1

I'm creating a system that reads/writes a spreadsheet using PhpSpreadsheet. Does this library support the use of textboxes? When I tried all the textboxes were deleted.

karel
  • 5,489
  • 46
  • 45
  • 50

1 Answers1

2

No, PhpSpreadsheet doesn't support any form elements; and features of Excel that aren't supported simply aren't loaded when the file is loaded, so don't exist in the spreadsheet object when it is saved

Mark Baker
  • 209,507
  • 32
  • 346
  • 385
  • Is this really true ? When I load an excel spreadsheet with text boxes they are still there after editing the file with PhpSpreadsheet. I can't manipulate them though which I really would like ti be able to – flaggalagga Apr 16 '21 at 08:42