ClearPoints Method

Description
Clears the points in memory for the current robot.

Syntax
Sub ClearPoints ()

See Also
LoadPoints Method, Robot Property, SavePoints Method, SetPoint Method

ClearPoints Example
VB Example:

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

C# Example:

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