In order to call the “Move” tab the following code can be used:
public void selectCenterPoint() {
UserInterfaceAPI uiapi = apiProvider.getUserInterfaceAPI();
uiapi.getUserInteraction().getUserDefinedRobotPosition(new RobotPositionCallback() {
@Override
public void onOk(Pose pose, JointPositions jointPositions) {
}
});
}
However, do you have a callback function to the “Plane” tab?