Hello, Amit,
The Clipboard.
GetText method returns only the text that is stored in the global Clipboard object. The default copy behavior internally uses the Clipboard.
SetDataObject method passing a newly created
DataObject.
If you want to extract the row/column of the copied cells, note that the
CellFormatting event is fired for a special type of cell element (
FormatCellElement). Thus, you can extract its row/column:
private void radPivotGrid1_CellFormatting(object sender, PivotCellEventArgs e)
{
if (e.CellElement.GetType().ToString() == "Telerik.WinControls.UI.FormatCellElement")
{
Console.WriteLine(e.CellElement.Row);
Console.WriteLine(e.CellElement.Column);
}
}
I hope this information helps.
Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik
Get
quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.
Learn More.