API Documentation > Classes > Class pfcTableOwner
Class pfcTableOwner
Description
This interface represents a Creo Parametric model that can contain tables.
See Also:
Direct Known Subclasses:
User Guide References:
Method Summary
Creates a table in the model.
void
DeleteTable (pfcTable Table, /* optional */ boolean Repaint)
Deletes a table from the model.
/* optional */ pfcTable
GetTable (number Id)
Gets a table in the model, given its identifier.
Lists the tables in the model.
Retrieves a table from a file on disk.This method always place table's top left corner at a point sepcified by instruction.
Retrieves a table from a file on disk. This method place table's origin at a point sepcified by instructions.
void
Updates all drawing tables.
Method Detail
CreateTable
Creates a table in the model.
Exceptions thrown (but not limited to):
<reference 4 to unknown entity pfcExceptions::pfcXInAMethod>
See Also:
Parameters:
Instructions
Data object containing information on the table to create.
Returns:
The created table.
User Guide References:
void
DeleteTable
(pfcTable Table, /* optional */ boolean Repaint)
Deletes a table from the model.
Exceptions thrown (but not limited to):
pfcXToolkitNotExist - The specified table_id does not exist.
Parameters:
Table
The table to delete.
Repaint
true to repaint the drawing with the changes, false or null to delay the repaint.
User Guide References:
/* optional */ pfcTable
GetTable
(number Id)
Gets a table in the model, given its identifier.
Parameters:
Id
The table identifier.
Returns:
The table, or null, if the table was not found.
User Guide References:
ListTables
()
Lists the tables in the model.
Exceptions thrown (but not limited to):
pfcXToolkitNotFound - No tables were found.
Returns:
Sequence of tables found in the model.
User Guide References:
RetrieveTable
Retrieves a table from a file on disk.This method always place table's top left corner at a point sepcified by instruction.
See Also:
Parameters:
Instructions
Data object containing details about the table to be retrieved.
Returns:
The created table.
User Guide References:
RetrieveTableByOrigin
Retrieves a table from a file on disk. This method place table's origin at a point sepcified by instructions.
See Also:
Parameters:
Instructions
Data object containing details about the table to be retrieved.
Returns:
The created table.
User Guide References:
void
UpdateTables
()
Updates all drawing tables.
User Guide References:
Was this helpful?