How do I group my component's properties in the Object Inspector?
问题 I want my component which will be non-visual to have its published properties under a category not on the top level of the Object Inspector. Take the below example: type TMyComponent = class(TComponent) protected function GetSomeValue: string; function GetSomeValueExt: string; published property SomeValue: string read GetSomeValue; property SomeValueExt: string read GetSomeValueExt; end; procedure Register; implementation procedure Register; begin RegisterComponents('My Component',