SavePoints Method

Description
Save points for the current robot into a file.

Syntax
Sub SavePoints (FileName As String)

Parameters

  • PointFileName
    The file name to save the points in the current project.

See Also
LoadPoints Method

SavePoints Example
VB Example:

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

C# Example:

m_spel.SavePoints("part1.pts");