Is there a way to copy the contents of PivotGridControl to Clipboard? I've tried the following, but without result:
var list = new GridRangeInfoList();
list.Add(GridRangeInfo.Cells(1,1,4,4));
pivotStorageSummary.TableControl.Model.CutPaste.CopyCellsToClipboard(list, true);
pivotStorageSummary.TableModel.Model.CutPaste.CopyCellsToClipboard(list, true);
pivotStorageSummary.TableModel.CutPaste.CopyCellsToClipboard(list, true);
Thanks!