SavePoints 方法

描述
将当前机器人的点保存到文件中。

语法
Sub SavePoints (FileName As String)

参数

  • PointFileName
    保存当前项目中的点的文件名称。

参阅
LoadPoints 方法

SavePoints 示例
VB 例:

With m_spel  
    .SavePoints("part1.pts")  
End With  

C# 例:

m_spel.SavePoints("part1.pts");