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
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.
