API Documentation > Classes > Class pfcTable
Class pfcTable

package com.ptc.pfc.pfcTable;

public class
pfcTable


Description
Contains global CIP definitions for module "pfcTable"
Method Summary
ColumnCreateOption_Create (ColumnJustification Justification, double ColumnWidth)
Creates a data object used for creating a column in a drawing table.
static TableCell
TableCell_Create (int RowNumber, int ColumnNumber)
Creates a new data object representing a cell in drawing table.
Creates a data object used to create a table, when passed toTableOwner.CreateTable(TableCreateInstructions).
TableRetrieveInstructions_Create (String FileName, Point3D Position)
Creates a data object containing instructions to retrieve a drawing table.
Method Detail
ColumnCreateOption_Create
ColumnCreateOption_Create
(ColumnJustification Justification, double ColumnWidth)
Creates a data object used for creating a column in a drawing table.
See Also:
Parameters:
Justification
The column justification.
ColumnWidth
The column width. This is either in length units or in the number of characters, depending on the value of the SizeType attribute in TableCreateInstructions.
Returns:
The created column data object.
TableCreateInstructions_Create
TableCreateInstructions_Create
(Point3D Origin)
Creates a data object used to create a table, when passed to TableOwner.CreateTable(TableCreateInstructions).
Manual References:
Parameters:
Origin
The location of the table origin.
Returns:
The instructions data object.
TableRetrieveInstructions_Create
TableRetrieveInstructions_Create
(String FileName, Point3D Position)
Creates a data object containing instructions to retrieve a drawing table.
Manual References:
Parameters:
FileName
The name of the table file.
Position
The location for the retrieved table.
Returns:
The created data object.
TableCell_Create
static TableCell
TableCell_Create
(int RowNumber, int ColumnNumber)
Creates a new data object representing a cell in drawing table.
Manual References:
Parameters:
RowNumber
The row number. Row numbers range from 1 to the number of row in the table.
ColumnNumber
The column number. Column numbers range from 1 to the number of columns in the table.
Returns:
Was this helpful?