Quantcast
Channel: EPPlus Issue Tracker Rss Feed
Viewing all articles
Browse latest Browse all 2262

Created Unassigned: [4.0.3] ExcelRangeBase: Copy does not paste Flag [15204]

$
0
0
Hi,
I'm new to EPPlus and first of all I have say thanks for this library and for your work.

When I began to use the ExcelBaseRange.Copy I noticed that you copy Range flags
```
if (_worksheet._flags.Exists(row, col, ref flag)
{
cell.Flag = flag;
}
```
but late the flags are not pasted. In the destination the flags are cleared, but there is no copying flags to the Destination range in. In other words, I'm missing
```
foreach(var cell in copiedValue)
{
[..]
if (cell.Flag != null)
{
Destination._worksheet._flags.SetValue(cell.Row, cell.Column, cell.Flag);
}
[..]
}
```
I don't know if this is an error, but to me it seems so.

By the way: Why is pasting comments commented out?

Regards


Viewing all articles
Browse latest Browse all 2262

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>