ClearPoints 方法

描述
清除当前机器人内存中的点。

语法
Sub ClearPoints ()

参阅
LoadPoints 方法, Robot 属性, SavePoints 方法, SetPoint 方法

ClearPoints 示例
VB 例:

With m_spel  
    .ClearPoints()  
    .SetPoint(1, 100, 200, -20, 0, 0, 0)  
    .Jump(1)  
End With  

C# 例:

m_spel.ClearPoints();  
m_spel.SetPoint(1, 100, 200, -20, 0, 0, 0);  
m_spel.Jump(1);