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
3455
How can I assign a null value to cell which is bind with a valuelist
posted

Hi,

How can I set a null value to an cell.

Regards,

Ceaser

Parents
No Data
Reply
  • 69832
    Suggested Answer
    Offline posted

    Once you have a reference to the cell, assign DbNull.Value to its Value property, like so:

    this.ultraGrid.Rows[0].Cells[0].Value = DBNull.Value;

    If there is more to this, please provide us with some additional details, and we will try to help.

Children