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);