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
85
Paste into grid
posted

I'm experiencing some interesting behavior on my application.  I have a grid where I've allowed multi cell operations.

When I paste something on a selected cell using the ctrl+v keys, everything works as it should.  However, if i try to simulate the behavior by using the following code.

 

private void pasteTSB_Click(object sender, EventArgs e)
        {
            ultraGrid1.PerformAction(UltraGridAction.Paste,false,false);           
        }

The AfterPerformAction event is not raised.  Any clues as to what may be happening?