Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
Can anyone please guide how to create a drawing table using Object Toolkit?
I found two API for it,
pfcTableCreateInstructions::Create()
pfcTableOwner::CreateTable()
Can anyone explain how to use it?
Hello!
1) Create pfcTableCreateInstructions object, using method pfcTableCreateInstructions_ptr Create (pfcPoint3D_ptr Origin)
2) Fill this object using methods SetColumnData, SetRowHeights, etc
3) Past this object to pfcTable_ptr CreateTable
or you can load the table from .tbl file, saved from Creo
1) Load table data from file to object pfcTableRetrieveInstructions_ptr Create (xrstring FileName, pfcPoint3D_ptr Position)
2) Past this object to pfcTable_ptr RetrieveTable (pfcTableRetrieveInstructions_ptr Instructions)
Some thing like this.