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
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