Library | Package Java Toolkit

Class pfcTable

package com.ptc.pfc.pfcTable;

public class pfcTable



Description

Contains global CIP definitions for module "pfcTable"



Method Summary
static ColumnCreateOptionColumnCreateOption_Create (ColumnJustification Justification, double ColumnWidth)
    Creates a data object used for creating a column in a drawing table.
static TableCellTableCell_Create (int RowNumber, int ColumnNumber)
    Creates a new data object representing a cell in drawing table.
static TableCreateInstructionsTableCreateInstructions_Create (Point3D Origin)
    Creates a data object used to create a table, when passed to TableOwner.CreateTable(TableCreateInstructions).
static TableRetrieveInstructionsTableRetrieveInstructions_Create (String FileName, Point3D Position)
    Creates a data object containing instructions to retrieve a drawing table.
Pass this function to TableOwner.RetrieveTable(TableRetrieveInstructions). or TableOwner.RetrieveTableByOrigin(TableRetrieveInstructions).

Method Detail

ColumnCreateOption_Create

static ColumnCreateOptionColumnCreateOption_Create (ColumnJustification Justification, double ColumnWidth)


    Creates a data object used for creating a column in a drawing table.
See Also:
TableCreateInstructions
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

static TableCreateInstructionsTableCreateInstructions_Create (Point3D Origin)


    Creates a data object used to create a table, when passed to TableOwner.CreateTable(TableCreateInstructions).
Manual References:
Drawings: Creating Drawing Tables, Drawings: Creating Drawing Tables
Parameters:
Origin
The location of the table origin.
Returns:
The instructions data object.


TableRetrieveInstructions_Create

static TableRetrieveInstructionsTableRetrieveInstructions_Create (String FileName, Point3D Position)


    Creates a data object containing instructions to retrieve a drawing table.
Pass this function to TableOwner.RetrieveTable(TableRetrieveInstructions). or TableOwner.RetrieveTableByOrigin(TableRetrieveInstructions).
Manual References:
Drawings: Retrieving Drawing Tables, Drawings: Retrieving Drawing Tables
Parameters:
FileName
The name of the table file.
Position
The location for the retrieved table.
Returns:
The created data object.


TableCell_Create

static TableCellTableCell_Create (int RowNumber, int ColumnNumber)


    Creates a new data object representing a cell in drawing table.
Manual References:
Drawings: Creating Drawing Cells
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: