Reputation: 656
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?
Upvotes: 0
Views: 1090
Reputation: 3665
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.
Upvotes: 1