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;