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,
I have selected just 1 cell of the row how can i copy the entire content to the clipboard and paste it.
i am using following method with this it just copies the content of the cell
this.m_PretestListingGrid.Model.CutPaste.Copy();
ADAdministrator Syncfusion Team December 16, 2004 09:40 AM UTC
Before calling
this.m_PretestListingGrid.Model.CutPaste.Copy();
try doing this code to select the row.
int row = this.m_PretestListingGrid.CurrentCell.RowIndex;
this.m_PretestListingGrid.Selections.SelectRange(GridRangeInfo.Row(row), true);