Ho provato a modificare una Type Library, aggiungendo una
nuova Proprietà, come da codice seguente:

codice:
function TIWActiveFormX.Get_STREAMERS: WideString;
begin
   Result := STREAMERS;
end;

procedure TIWActiveFormX.Set_STREAMERS(const Value: WideString);
begin
   STREAMERS := String(Value);
end;
Ma ricevo l'errore "Undeclared identifier: STREAMERS".

Eppure ho "copiato" esattamente dallo standard .....
Dove vanno dichiarati questi nuovi identifier ?