Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1365
myGrid.PerformAction(UltraGridAction.Copy) includes column header?
posted

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

Parents
  • 29105
    Verified Answer
    Offline posted

    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.

Reply Children
No Data