Do you want to find a way to determine what is in the Params container? If so, you need to get the Params object. You can do this similarly to what you are already doing, but instead of calling the Name property, you need to call the GetPropertyObject method with the lookup string of "Params", and 0 for options.
After you do this, you can iterate through this object to determine what is inside of it. You will have to loop and use recursion to get all the subproperties of each level. The methods you will need are:
GetNumSubProperties, which will tell you how many children a Property Object has. You will then need to get the subproperty by calling "GetNthSubProperty". If you want to get the values, you will have to call either GetValNumber or GetValString (or GetvalBoolean, etc...). You need to determine what type each subproperty is to determine if you should dig deeper or call a method . To do this, you will need to call the GetType method, which will tell you if its a container, number, string, Boolean, etc...
Allen P.
NI