views:

39

answers:

1

I have access to a 3rd party PropertyGrid within my application (C#. ,Net v2). Is there an easy way to iterate over the properties in the grid and their values?

+1  A: 

If I understand your question correctly, you'll need to use reflection on the SelectedObject property to get all of the properties and values. The grid itself doesn't programmatically expose those.

Jacob G