| Library | Package | Frames | Expand | Java Toolkit |
| Method Summary | |
|---|---|
| static AsyncConnection | AsyncConnection_Connect
(
/*optional*/
String Display,
/*optional*/
String UserID,
/*optional*/
String TextPath,
/*optional*/
Integer TimeoutSec)
Causes the application to connect to an existing Creo Parametric process running on a host using a specified display. It is intended for use in simple and full asynchronous modes. |
| static AsyncConnection | AsyncConnection_ConnectById
(ConnectionId Id,
/*optional*/
String TextPath,
/*optional*/
Integer TimeoutSec)
Connects to a specific Creo Parametric session by passing the identification string. |
| static AsyncConnection | AsyncConnection_ConnectWS
(
/*optional*/
String Display,
/*optional*/
String UserID,
/*optional*/
String WSName,
/*optional*/
String TextPath,
/*optional*/
Integer TimeoutSec)
Causes the application to connect to an existing Creo Parametric process and to an existing Pro/INTRALINK worksapce running on a host using a specified display. For use in simple and full asynchronous modes. |
| static /*optional*/ AsyncConnection | AsyncConnection_GetActiveConnection
()
Connection established between your application and Creo Parametric. If your application is connected with Creo Parametric, call this function to get the connection object. |
| static AsyncConnection | AsyncConnection_Spawn
(String CmdLine,
/*optional*/
String TextPath)
|
| static AsyncConnection | AsyncConnection_Start
(String CmdLine,
/*optional*/
String TextPath)
Causes the application to spawn and connect to a new Creo Parametric session. For use in simple and full asynchronous modes. |
| static ConnectionId | ConnectionId_Create
(String ExternalRep)
Creates a new connection id object to use in pfcAsyncConnection.AsyncConnection_ConnectById(ConnectionId, /*optional*/ String, /*optional*/ Integer). |
| Method Detail |
|---|
| ConnectionId_Create |
|---|
| static ConnectionId | ConnectionId_Create | (String ExternalRep) |
Creates a new connection id object to use in pfcAsyncConnection.AsyncConnection_ConnectById(ConnectionId, /*optional*/ String, /*optional*/ Integer).
|
| AsyncConnection_Start |
|---|
| static AsyncConnection | AsyncConnection_Start | (String CmdLine, /*optional*/ String TextPath) |
Causes the application to spawn and connect to a new Creo Parametric session. For use in simple and full asynchronous modes.
|
| AsyncConnection_Spawn |
|---|
| static AsyncConnection | AsyncConnection_Spawn | (String CmdLine, /*optional*/ String TextPath) |
|
| AsyncConnection_Connect |
|---|
| static AsyncConnection | AsyncConnection_Connect | ( /*optional*/ String Display, /*optional*/ String UserID, /*optional*/ String TextPath, /*optional*/ Integer TimeoutSec) |
| Causes the application to connect to an existing Creo Parametric process running on a host using a specified display. It is intended for use in simple and full asynchronous modes. If the method locates more than one Creo Parametric session with the appropriate characteristics, it will throw an XToolkitAmbiguous exception. If you want to connect or reconnect to a specific Creo Parametric session, use the method pfcAsyncConnection.AsyncConnection_ConnectById(ConnectionId, /*optional*/ String, /*optional*/ Integer) The application may only connect to one Creo Parametric session at any time.
|
| AsyncConnection_ConnectWS |
|---|
| static AsyncConnection | AsyncConnection_ConnectWS | ( /*optional*/ String Display, /*optional*/ String UserID, /*optional*/ String WSName, /*optional*/ String TextPath, /*optional*/ Integer TimeoutSec) |
| Causes the application to connect to an existing Creo Parametric process and to an existing Pro/INTRALINK worksapce running on a host using a specified display. For use in simple and full asynchronous modes. NOTE: This method is deprecated. Pro/INTRALINK 3.4 is not supported. Please use pfcAsyncConnection.AsyncConnection_Connect(/*optional*/ String, /*optional*/ String, /*optional*/ String, /*optional*/ Integer) to connect to an existing Creo Parametric process that has a Pro/INTRALINK 10.0 server registered. If the method locates more than one Creo Parametric session with the appropriate characteristics, it will throw an XToolkitAmbiguous exception. If you want to connect or reconnect to a specific Creo Parametric session, use the method pfcAsyncConnection.AsyncConnection_ConnectById(ConnectionId, /*optional*/ String, /*optional*/ Integer) The application may only connect to one Creo Parametric session at any time.
|
| AsyncConnection_ConnectById |
|---|
| static AsyncConnection | AsyncConnection_ConnectById | (ConnectionId Id, /*optional*/ String TextPath, /*optional*/ Integer TimeoutSec) |
| Connects to a specific Creo Parametric session by passing the identification string. The ID string for a given session can be obtained from AsyncConnection.GetConnectionId(). The application may only connect to one Creo Parametric session at any time.
|
| AsyncConnection_GetActiveConnection |
|---|
| static /*optional*/ AsyncConnection | AsyncConnection_GetActiveConnection | () |
Connection established between your application and Creo Parametric. If your application is connected with Creo Parametric, call this function to get the connection object.
|