I'm using a property grid to show runtime properties of an object in my program. I'm looking for a programatic method like a collection of tabs and collection of each property under tabs for iteration. For example i want
For each prpItem in prpGrid.PropertyItems
select case prpItem
case "Path"
'Show ellipse in that property so use can click to see filedialog and change path.
case "Font"
case "Point"
...
end select
Next
Is this possible? Please do not tell we can only write a class and fixed properties can be handled. For instance if the object can have runtime variable number of properties and variable types of properties how to code in a class?
Help or advice appreciated.
Thanks