SimSetPlace Method

Description
Places an object using the specified robot.

Syntax
Sub SimSetPlace (RobotName As String, Object As String)

Parameters

  • RobotName
    A string variable indicating the name of the robot to place.
  • Object
    A string variable indicating the placed object name.

Remarks
The robot specified by RobotName places the object specified by Object. The placed object is deregistered as part of the robot.
You cannot place an object that has already been deregistered as a part.

For more details, refer to the following manual and section:
Epson RC+ 8.0 SPEL+ Language Reference - SimSet

See Also
SimGet Method, SimSet Method, SimSetPick Method

SimSetPlace Example
VB Example:

m_spel.SimSetPlace ("Robot1", "SBox_1")  

C# Example:

m_spel.SimSetPlace ("Robot1", "SBox_1");