-
Hello, I've shared a ExcelWorksheet (EEPlus) object by calling "engine.SetValue()".
If in Jint, I use "sheet.Cells["A1"].Value, I have the content of the cell. I'm not sure but I think it has to do with the fact it expects a string and stop there ? Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 11 replies
-
Two-dimensional indexers probably just aren't supported, Jint understands the basic indexer. |
Beta Was this translation helpful? Give feedback.
-
Thank you lahma. Do you reckon it's worth doing a feature request ? |
Beta Was this translation helpful? Give feedback.
-
For your information, with the stable version I can use: sheet.Cells["A1"].Value and not sheet.Cells[0, 0].Value.
|
Beta Was this translation helpful? Give feedback.
-
sheet.Cells[1][1].Value returns "Address is not valid" // I donot like this
sheet.Cells.get_Item(1, 1).Value returns "Array was not a one-dimensional array" // I think it's enough It will import a curring function like object |
Beta Was this translation helpful? Give feedback.
Two-dimensional indexers probably just aren't supported, Jint understands the basic indexer.