AD
Administrator
Syncfusion Team
March 22, 2007 05:03 PM UTC
Hi Aaron,
One way you can do this by using the GridRangeInfo.Cells method in a grid. Please try this code and let me know if this helps.
public void CopyGridToClipboard()
{
GridRangeInfoList list = new GridRangeInfoList();
list.Add(GridRangeInfo.Cells(0,0, Model.RowCount, Model.ColCount));
bool b = CutPaste.CopyTextToClipboard(list);
}
Best regards,
Haneef
AS
Aaron Schaefer
March 23, 2007 03:53 PM UTC
Thank You!
That worked as intended.
Aaron