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
455
how can one remove all selections in a grid?
posted

Dear Developers --

Please help.

I was wondering-- how can one remove all selections in a grid?

Please advise.

I would rather not have to interate through the rows if possible.

I am using Infragistics4.Win.UltraWinGrid.v13.1.dll

I am using Visual Studio 2012 SP4 running on Windows 7, fully patched.

I am writing in C#.

Can you help?

Please advise.

Thanks.

-- Mark Kamoski

Parents
  • 469350
    Verified Answer
    Offline posted

    Hi Mark,

    Nothing to it:

    this.ultraGrid1.Selected.Rows.Clear();
    this.ultraGrid1.Selected.Columns.Clear();
    this.ultraGrid1.Selected.Cells.Clear();

Reply Children
No Data