Michael Ganss
Michael Ganss
I've tested with ~350 input files using C# code generated from the .ksy. This turned up the additional phrase style I added support for in the latest PR. So I'm...
Thanks. Do you mean the [Task object](https://docs.cycling74.com/max8/vignettes/jstaskobject)? AFAICT it's similar to `setInterval`/`setTimeout` in the browser. I have no plans to implement any of the additional objects that Max provides. But...
> I can see now pdjs don't work well with js modules very well, export, import and require doesn't seem to work. I'm wrong? Correct. Modules are not supported currently....
Can you attach a demo Excel file and the class definition you're trying to map to?
I'm not sure I understand this yet. Perhaps you just need to decorate `Version` etc with `[Ignore]`?
Thanks for pointing this out. Embarrassingly, the list of CSS properties in the README wasn't updated, either 😳 I'm not sure how to proceed re default CSS properties. The goal...
So your suggestion is to exclude only the position property and allow all other standard CSS properties by default?
How would you map complex types like DataTable, Dictionary etc. to Excel?
Try writing to `Stream.Null` on all calls to `Save()` except the last one. The internal workbook object will be updated on each call but only the last call to `Save()`...
@bh-schmidt Generally, yes. But I wouldn't use the `Stream.Null` hack but rather refactor the core `Save()` method to not call `Workbook.Write()` at the end: https://github.com/mganss/ExcelMapper/blob/2d36c9b94110e1c45c0ed4f7020c95a0eee33ea2/ExcelMapper/ExcelMapper.cs#L1026-L1069