AD
Administrator
Syncfusion Team
December 31, 2003 06:12 AM UTC
If you are using a GridDataBoundGrid, you can use the Model.CutPaste.CopyTextToClipboard method.
GridRangeInfo range = GridRangeInfo.Cells(1, 1,
this.gridDataBoundGrid1.Model.RowCount - 1,
this.gridDataBoundGrid1.Model.ColCount);
GridRangeInfoList rangeList = new GridRangeInfoList();
rangeList.Add(range);
this.gridDataBoundGrid1.Model.CutPaste.CopyTextToClipboard(rangeList);