Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Hey,
I have created a table with ProDrawingTableCreate, it creates the table in the current sheet.
My question is how do I create or copy the same table in all drawing sheets.
I can get the sheet's number with ProDrawingSheetsCount and loop on it, but I don't have an idea on how to place the same table in all of it.
Thank you!
Solved! Go to Solution.
I prefer to create the table in Creo, store it in a file location, and then use the ProDwgtableRetrieve to insert in a drawing. You could perhaps loop thru the sheets and insert the table in every sheet this way?
I prefer to create the table in Creo, store it in a file location, and then use the ProDwgtableRetrieve to insert in a drawing. You could perhaps loop thru the sheets and insert the table in every sheet this way?
or create, save with ProDwgtableSave(..) and retrieve with ProDwgtableRetrieve(..), remove created table file if needs to be to keep things clean.