Pallet Method

Description
Defines pallets.

Syntax
Sub Pallet ( PalletNumber As Integer, Point1 As String, Point2 As String, Point3 As String [, Point4 As String] , rows As Integer, columns As Integer )

Parameters

  • PalletNumber
    The pallet number indicated by an integer between 0 and 15
  • Point1
    A point variable which defines the first pallet position.
  • Point2
    A point variable which defines the second pallet position.
  • Point3
    A point variable which defines the third pallet position.
  • Point4
    Optional. A point variable which defines the fourth pallet position.
  • Rows
    The number of horizontal points on the palette (integer 1 to 32767)
  • Columns
    The number of vertical points on the palette (integer 1 to 32767)

See Also
Jump Method, Go Method, SetPoint Method

Pallet Example
VB Example:

m_spel.Pallet(1, 1, 2, 3, 4, 3, 4)  

C# Example:

m_spel.Pallet(1, 1, 2, 3, 4, 3, 4);