Hi All, not sure why but when i paste the value of the cell it includes the column name. How can i turn that off to only have the value?
i'm doing this on a ctrl+c in the KeyUp event.
if (e.Control == true && e.KeyCode == Keys.C) { this.gridAllocated.PerformAction(UltraGridAction.Copy); }
thanks
Al
Hello Al,
The grid supports turning on Clipboard Operations which includes CopyWithHeaders, which you need to have turn off by setting the AllowMultiCellOperation to 'Copy'. Pressing 'Ctrl + C' should then work as expected.
Let me know if you have any questions regarding this matter.
That worked , thanks Michael.
Perfect! Your welcome.