Community login and other support tools will be unavailable Saturday May 3rd 9:00 am to 3:00 pm (EST) due to planned maintenance. Learn More
Hello All,
I have a function that create a CSYS from another CSYS. It works fine when I use the command ProSelect and use the ProSelection in the function.
ProError CreateCSYS(ProName name, ProMdl mdl, ProSelection CSYSREF, double tranX, double tranY, double tranZ, double rotX, double rotY, double rotZ) {}
Now, I'm trying to create de CSYS without asking for the selecion prompt from the user.
I'm trying to get the ProFeature of the CSYS and use the command ProFeatureSelectionGet(). But it doesn't work. I tryied many diferent ways and none worked.
How can I get the ProSelection of a CSYS to use in my function without asking it for the user?
I'm using Creo 8.0.10
Solved! Go to Solution.
Hi,can get the CSYS name, use API ProModelitemByNameInit(); ProSelectionAlloc(); to the ProSelection CSYSREF.
Hi,can get the CSYS name, use API ProModelitemByNameInit(); ProSelectionAlloc(); to the ProSelection CSYSREF.
Thank you, I tryied this way and it worked just fine! 🙂