API Documentation > Classes > Class wfcSession
Class wfcSession

package com.ptc.wfc.wfcSession;

public class
wfcSession


Description
Contains global CIP definitions for module "wfcSession"
Method Summary
BeforeModelRetrieveInstructions_Create (WModelRetrieveOptions RetrieveOptions, String ModelFilePath)
Creates a class object for model retrieve instrctions.
static Matrix3D
CreateMatrix3D (double idx00, double idx01, double idx02, double idx03, double idx10, double idx11, double idx12, double idx13, double idx20, double idx21, double idx22, double idx23, double idx30, double idx31, double idx32, double idx33)
Intialize a 3 dimensional Matrix with specified values
static Outline2D
CreateOutline2D (double idx00, double idx01, double idx10, double idx11)
Intialize a 2 dimensional Line with specified values
static Outline3D
CreateOutline3D (double idx00, double idx01, double idx02, double idx10, double idx11, double idx12)
Intialize a 3 dimensional Line with specified values
static Point2D
CreatePoint2D (double idx0, double idx1)
Intialize a 2 dimensional Point with specified values
static Point3D
CreatePoint3D (double idx0, double idx1, double idx2)
Intialize a 3 dimensional Point with specified values
static Timer
Create timer object with specified listener. This method can be called from non-Toolkit thread. For example , Thread created by application to process non-Creo tasks.
static Vector2D
CreateVector2D (double idx0, double idx1)
Intialize a 2 dimensional Vector with specified values
static Vector3D
CreateVector3D (double idx0, double idx1, double idx2)
Intialize a 3 dimensional Vector with specified values
ElementWstringOption_Create (boolean Positive, boolean Sign)
Creates a class object for file open dialog options.
Creates a class object for file save dialog options.
static void
Create listener object whose callback can be called as soon as Toolkit thread is available. User can call Object Toolkit methods in this callback. This method can be called from non-Toolkit thread. For example , Thread created by application to process non-Creo tasks.
static TimeValue
TimeValue_Create (int Seconds, int MicroSeconds)
Method Detail
ElementWstringOption_Create
ElementWstringOption_Create
(boolean Positive, boolean Sign)
Parameters:
Positive
Sign
Returns:
BeforeModelRetrieveInstructions_Create
BeforeModelRetrieveInstructions_Create
(WModelRetrieveOptions RetrieveOptions, String ModelFilePath)
Creates a class object for model retrieve instrctions.
User Guide References:
Parameters:
RetrieveOptions
ModelFilePath
A full path to the valid model file including FileName + Extension + Version.
Returns:
A pointer to the object.
FiletypeOpenOptions_Create
FiletypeOpenOptions_Create
(MdlfileTypes ModelFiletypes)
Creates a class object for file open dialog options.
User Guide References:
Parameters:
ModelFiletypes
The filter sequence for file types.
Returns:
A pointer to the object.
FiletypeSaveOptions_Create
FiletypeSaveOptions_Create
(MdlfileTypes ModelFiletypes)
Creates a class object for file save dialog options.
User Guide References:
Parameters:
ModelFiletypes
The filter sequence for file types.
Returns:
A pointer to the object.
TimeValue_Create
static TimeValue
TimeValue_Create
(int Seconds, int MicroSeconds)
Parameters:
Seconds
MicroSeconds
Returns:
CreateTimer
static Timer
CreateTimer
(TimerAction Action)
Create timer object with specified listener. This method can be called from non-Toolkit thread. For example , Thread created by application to process non-Creo tasks.
Parameters:
Action
Returns:
InvokeLater
static void
InvokeLater
(RunnableAction Action)
Create listener object whose callback can be called as soon as Toolkit thread is available. User can call Object Toolkit methods in this callback. This method can be called from non-Toolkit thread. For example , Thread created by application to process non-Creo tasks.
Parameters:
Action
Returns:
CreateMatrix3D
static Matrix3D
CreateMatrix3D
(double idx00, double idx01, double idx02, double idx03, double idx10, double idx11, double idx12, double idx13, double idx20, double idx21, double idx22, double idx23, double idx30, double idx31, double idx32, double idx33)
Intialize a 3 dimensional Matrix with specified values
User Guide References:
Parameters:
idx00
idx01
idx02
idx03
idx10
idx11
idx12
idx13
idx20
idx21
idx22
idx23
idx30
idx31
idx32
idx33
Returns:
The Matrix3D object.
CreatePoint2D
static Point2D
CreatePoint2D
(double idx0, double idx1)
Intialize a 2 dimensional Point with specified values
User Guide References:
Parameters:
idx0
idx1
Returns:
The Point2D object.
CreatePoint3D
static Point3D
CreatePoint3D
(double idx0, double idx1, double idx2)
Intialize a 3 dimensional Point with specified values
User Guide References:
Parameters:
idx0
idx1
idx2
Returns:
The Point3D object.
CreateOutline3D
static Outline3D
CreateOutline3D
(double idx00, double idx01, double idx02, double idx10, double idx11, double idx12)
Intialize a 3 dimensional Line with specified values
User Guide References:
Parameters:
idx00
idx01
idx02
idx10
idx11
idx12
Returns:
The Outline3D object.
CreateOutline2D
static Outline2D
CreateOutline2D
(double idx00, double idx01, double idx10, double idx11)
Intialize a 2 dimensional Line with specified values
User Guide References:
Parameters:
idx00
idx01
idx10
idx11
Returns:
The Outline2D object.
CreateVector2D
static Vector2D
CreateVector2D
(double idx0, double idx1)
Intialize a 2 dimensional Vector with specified values
User Guide References:
Parameters:
idx0
idx1
Returns:
The Vector2D object.
CreateVector3D
static Vector3D
CreateVector3D
(double idx0, double idx1, double idx2)
Intialize a 3 dimensional Vector with specified values
User Guide References:
Parameters:
idx0
idx1
idx2
Returns:
The Vector3D object.
Was this helpful?