AD
Administrator
Syncfusion Team
October 6, 2005 03:50 PM UTC
One way to do this is to use this method:
this.grid.Model.TextDataExchange.CopyTextToBuffer
Here is a minimal sample.
http://www.syncfusion.com/Support/user/uploads/GDBG_Copy_ea59512a.zip
AD
Administrator
Syncfusion Team
October 6, 2005 03:55 PM UTC
You should insert this first line into the above sample if you want to support full row/fullcolumn/full table selections. The range has to be modified into a cell range using the Expand function.
range = range.ExpandRange(1, 1, this.gridDataBoundGrid1.Model.RowCount, this.gridDataBoundGrid1.Model.ColCount);
rangeList.Add(range);