The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Hi,
If I select a group of cells in the grid of which one of the rows of the selected range to be copied is empty, then i run into the problem that the paste operation pastes up to this blank line.
Copy using
grid.CutPaste.ClipboardFlags=GridDragDropFlags.Text;
grid.CutPaste.Copy();
If look at the data in the clipboard (Grid has 4 columns)
58 67 89 23
89 67 56 33
56 23 34 12
If I call paste like
grid.CutPaste.ClipboardFlags=GridDragDropFlags.Text;
grid.CutPaste.Paste();
the paste operation halts at the blank line.
Am I doing this wrong or is this a bug.
The only solution I can think of which is cleaning up the data may not work due to the fact that i may be copying > 1,000,000 cells which contain numbers and words and would casue a large performance hit