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.
If I set the print range in the GridPrintDocument to selection and a cell is selected but the text overflows into a neighboring cell that is NOT selected, the overflow text does not print.
How can I include the overflow text of a cell that is selected but the overflow is not?
Thanks,
Steve
ADAdministrator Syncfusion Team July 8, 2005 10:20 PM UTC
I do not have a good suggestion for this.
The printing will clip the output to the rectangle you pass it. One way I can think of to try to handle this is to enlarge the selection rectangle before you start the print process.
Another way might be to copy the range to the clipboard, then have a second grid and paste the the range into this second grid. Then you could resizetofit the new grid to show all the text without flooding over the cell boundary which would avoid the problem you are seeing. This would take some work to get done.