SpelRobotInfo クラス
| メンバー名 | 型 | 説明 |
|---|---|---|
| RobotModel | String | ロボット機種名 |
| RobotName | String | ロボット名 |
| RobotNumber | Integer | ロボット番号 |
| RobotSerial | String | ロボットシリアル番号 |
| RobotType | SpelRobotType | ロボットタイプ |
使用例を下に示します。
VB 例:
Dim info As SpelRobotInfo
info = m_spel.GetRobotInfo()
Label1.Text = info.RobotNumber + " " + info.RobotModel
C# 例:
SpelRobotInfo info;
info = m_spel.GetRobotInfo();
Label1.Text = info.RobotNumber + " " + info.RobotModel;