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
4028
Determine System.ComponentModel.Bindable property value of ultragrid column
posted

I am binding strongly typed objects to ultragrids in my winforms application, making use of the System.ComponnetModel.Bindable property of the object properties to help control which object properties are visible in the grids and which arnt.

Now I need to determine programatically which columns in a given grid have this property set to no, and which dont. How do I go about this?

Thanks.

---- EDIT ---

Just a little extra. What my goal is, is to determine which columns can potentially be viewed by the end user. That is:

  • The Bindable attribute is true.
  • AND
  • The field is not hidden   OR   the field is not excluded from the column chooser.

So if there is another way to determine which columns satisfy this, I'd be happy with that also.