You can find the event named OnFilter in TComponentInspector component,then add code to hide some properties,code like this:
Code example:
procedure TInspFrm.ComponentInspector1Filter(Sender: TObject; Prop: TProperty; var Result: Boolean); begin //hide the some properties in Inspector if UpperCase(Prop.Name)='NAME' then Result:=false; end;