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