I have a custom Delphi component defined as follows:
type
MyObject = class(TControl)
private
FColors: TArray<TAlphaColor>;
published
property Colors: TArray<TAlphaColor> read FColors write FColors;
end;
Currently, the Colors property does not appear in the Delphi IDE’s Object Inspector. I would like to make this property visible and editable through the IDE. How can I achieve this?