Home > other >  Does OpenXML support events?
Does OpenXML support events?

Time:09-08

My web application (c#) is using OpenXML to export data into Excel files. I am looking to implement Worksheet.Change event. I looked around and I don't see any mentions of event handling with OpenXML. Is that even possible?

Thanks

CodePudding user response:

OpenXML is just a file format. There's no Excel running when you use it.

  • Related