LoadPoints Method

Description
Loads a SPEL+ point file into the Controller's point memory for the current robot.

Syntax
Sub LoadPoints (FileName As String [, Merge As Boolean])

Parameters

  • PointFileName
    Point file valid for the current project
  • Merge
    Optional. Set this to integrate the current point into the specified point file.

See Also
ImportPoints Method, SavePoints Method

LoadPoints Example
VB Example:

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

C# Example:

m_spel.LoadPoints("part1.pts");