Search code examples
c#delphipropertygridequivalent

What is the Delphi equivalent of C#'s PropertyGrid?


Is there a Delphi equivalent to C#'s PropertyGrid? I want to implement something similar to the Object Inspector in RAD Studio.


Solution

  • Delphi has TValueListEditor, but it's extremely simple, nowhere near the functionality of the object inspector. For that you need a 3rd party control. JVCL has a capable, free inspector component, and there are many commercial ones, such as Inspex from Raize Software and VerticalGrid from Developer Express. VerticalGrid comes in several variants, one of which acts as an object inspector - all you need to do is assign an instance to a property, and the component does the rest.