Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. 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.