 | IObjectsReflect Method |
Reflects object by a specified plane of the active coordinate system.
Namespace:
EMInvent.InventSim.COMServer
Assembly:
InventSim (in InventSim.exe) Version: 5.1.12.6+develop
SyntaxISimObject Reflect(
ISimObject simObject,
string plane
)
Function Reflect (
simObject As ISimObject,
plane As String
) As ISimObject
Dim instance As IObjects
Dim simObject As ISimObject
Dim plane As String
Dim returnValue As ISimObject
returnValue = instance.Reflect(simObject,
plane)
Parameters
- simObject
- Type: EMInvent.InventSim.COMServerISimObject
Object to be reflected. - plane
- Type: SystemString
Plane of reflection.
Return Value
Type:
ISimObject
Examples
IObjects objects = app.ActiveProject.Objects;
ISimObject simObject = objects.Get("Box1");
objects.Reflect(simObject, "YZ");
See Also