How to get parameter values by API
Hi everybody,
I am using the VB.NET API for gathering informations about the current model. Especially the Creo parameters (see picture below).

You can get the parameters by
IpfcParameterOwner owner = (IpfcParameterOwner)currentModel;
foreach (IpfcParameter param in owner.ListParams())
...
So I can gather the values (e.g. "A.1") but I couldn´t get the parameter name (e.g. "PTC_WM_VERSION"). In the PDF-help they say, that the name can be retrieved by the IpfcModelItem. But how to come from IpfcParameter to IpfcModelItem (typecast is not possible).
Any suggestions how to get the needed information?
Best regards,
Benjamin
Nachricht geändert durch Benjamin Schmidt

