Hi!

I have following property providing a get/put function for settings an interface:

[propget, id(1)] HRESULT Type([out, retval] IMyType **pVal);
[propput, id(1)] HRESULT Type([in] IMyType *pVal);

getting the interface and setting a new interface works fine from the client side, but how can I set the null-pointer in JScript ?

something like "myObj.type=null;" makes a "Type mismatch" error.
Any ideas ?

TIA