Eplan Platform API
Eplan.EplApi.DataModel.E3D Namespace / Connection3D Class / Create Method / Create(Placement3D,Placement3D) Method
Placement3D from which connection will start.
Placement3D which will be connection end.
Example

Create(Placement3D,Placement3D) Method
Creates connection between two 3d placements without specifying connection points.
Syntax

Parameters

pStartObject
Placement3D from which connection will start.
pEndObject
Placement3D which will be connection end.
Exceptions
ExceptionDescription
Thrown when connection cannot be created.
Thrown when pStartObject parameter is null.
Thrown when pEndObject parameter is null.
Thrown when this object has already been created.
Example
//creating 3d connection which exists between two 3d functions. Connection points are not specified
Connection3D oConnection3DNoConnectionPoints = new Connection3D();
oConnection3DNoConnectionPoints.Create(oFunction3D1, oFunction3D2);


See Also